Home
last modified time | relevance | path

Searched refs:change_log (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
Ddebug-liveedit-2.js57 var change_log = new Array(); variable
58 …TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
59 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-4.js60 var change_log = new Array(); variable
61 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
64 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-3.js59 var change_log = new Array(); variable
60 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
62 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-patch-positions-replace.js60 var change_log = new Array(); variable
62 …dit.TestApi.ApplySingleChunkPatch(script, patch_pos, orig_body.length, new_body_patch, change_log);
63 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-newsource.js67 var change_log = new Array(); variable
68 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
70 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-stack-padding.js55 var change_log = new Array();
58 orig_animal.length, new_animal_patch, change_log);
60 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-patch-positions.js90 var change_log = new Array();
96 change_log);
98 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-check-stack.js61 var change_log = new Array();
63 …TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
65 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-breakpoints.js76 var change_log = new Array(); variable
77 var result = Debug.LiveEdit.SetScriptSource(script, new_source, false, change_log);
79 print("Change log: " + JSON.stringify(change_log) + "\n");
Ddebug-liveedit-1.js45 var change_log = new Array(); variable
46 …TestApi.ApplySingleChunkPatch(script, patch_pos, orig_animal.length, new_animal_patch, change_log);
Ddebug-liveedit-compile-error.js45 var change_log = new Array(); variable
49 orig_animal.length, new_animal_patch, change_log);
Ddebug-liveedit-literals.js56 var change_log = new Array();
58 old_expression.length, new_expression, change_log);
/external/chromium_org/v8/src/
Dliveedit-debugger.js33 change_log) { argument
147 CheckStackActivations(replaced_function_infos, change_log);
158 var break_points_restorer = TemporaryRemoveBreakPoints(script, change_log);
176 change_log.push( { linked_to_old_script: link_to_old_script_report } );
194 PatchFunctionCode(replace_code_list[i], change_log);
198 change_log.push( {position_patched: position_patch_report} );
300 function PatchFunctionCode(old_node, change_log) { argument
332 change_log.push( {function_patched: new_info.function_name} );
334 change_log.push( {function_patched: new_info.function_name,
359 function TemporaryRemoveBreakPoints(original_script, change_log) { argument
[all …]
Ddebug-debugger.js2332 var change_log = new Array();
2343 new_source, preview_only, change_log);
2351 response.body = {change_log: change_log, result: result_description}; property
/external/chromium_org/v8/tools/push-to-trunk/
Dtest_scripts.py613 def _TestSquashCommits(self, change_log, expected_msg): argument
616 f.write(change_log)
633 change_log = """1999-11-11: Version 3.22.5
644 self._TestSquashCommits(change_log, commit_msg)
647 change_log = """1999-11-11: Version 3.22.5
658 self._TestSquashCommits(change_log, commit_msg)
661 change_log = """Line with "quotation marks".\n"""
663 self._TestSquashCommits(change_log, commit_msg)
707 change_log = FileToText(TEST_CONFIG[CHANGELOG_FILE])
719 change_log)
/external/markdown/docs/
Drelease-2.0.txt66 See the [[change_log]] for a full list of changes.
/external/chromium_org/sync/tools/testserver/
Dchromiumsync.py773 change_log = sorted(self._entries.values(),
775 new_changes = [x for x in change_log if x.version > min_timestamp]