Home | History | Annotate | Download | only in src

Lines Matching refs:condition

176 BreakPoint.prototype.condition = function() {
177 if (this.script_break_point() && this.script_break_point().condition()) {
178 return this.script_break_point().condition();
204 BreakPoint.prototype.setCondition = function(condition) {
205 this.condition_ = condition;
219 if (this.condition()) {
220 // If break point has condition try to evaluate it in the top frame.
222 var mirror = exec_state.frame(0).evaluate(this.condition());
228 // Exception evaluating condition counts as not triggered.
366 ScriptBreakPoint.prototype.condition = function() {
386 ScriptBreakPoint.prototype.setCondition = function(condition) {
387 this.condition_ = condition;
691 condition, enabled,
695 break_point.setCondition(condition);
731 Debug.changeBreakPointCondition = function(break_point_number, condition) {
733 break_point.setCondition(condition);
866 break_point_number, condition) {
868 script_break_point.setCondition(condition);
1587 var condition = request.arguments.condition;
1620 break_point_number = Debug.setBreakPoint(f, line, column, condition);
1634 line, column, condition);
1638 Debug.setScriptBreakPointByName(target, line, column, condition,
1642 Debug.setScriptBreakPointById(target, line, column, condition, groupId);
1645 Debug.setScriptBreakPointByRegExp(target, line, column, condition,
1701 var condition = request.arguments.condition;
1719 // Change condition if supplied
1720 if (!IS_UNDEFINED(condition)) {
1721 Debug.changeBreakPointCondition(break_point, condition);
1804 condition: break_point.condition(),