OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:breakpoint
(Results
1 - 25
of
30
) sorted by null
1
2
/external/webkit/WebCore/inspector/front-end/
BreakpointsSidebarPane.js
33
this.listElement.className = "
breakpoint
-list";
43
addBreakpoint: function(
breakpoint
)
45
if (this.breakpoints[
breakpoint
.id])
48
this.breakpoints[
breakpoint
.id] =
breakpoint
;
50
breakpoint
.addEventListener("enabled", this._breakpointEnableChanged, this);
51
breakpoint
.addEventListener("disabled", this._breakpointEnableChanged, this);
52
breakpoint
.addEventListener("text-changed", this._breakpointTextChanged, this);
54
this._appendBreakpointElement(
breakpoint
);
61
if (!InspectorBackend.debuggerEnabled() || !
breakpoint
.sourceID
[
all
...]
SourceFrame.js
83
addBreakpoint: function(
breakpoint
)
85
this.breakpoints.push(
breakpoint
);
86
breakpoint
.addEventListener("enabled", this._breakpointChanged, this);
87
breakpoint
.addEventListener("disabled", this._breakpointChanged, this);
88
breakpoint
.addEventListener("condition-changed", this._breakpointChanged, this);
90
this._addBreakpointToSource(
breakpoint
);
93
removeBreakpoint: function(
breakpoint
)
95
this.breakpoints.remove(
breakpoint
);
96
breakpoint
.removeEventListener("enabled", null, this);
97
breakpoint
.removeEventListener("disabled", null, this)
[
all
...]
ScriptsPanel.js
297
var
breakpoint
= breakpoints[i];
299
if (startingLine <=
breakpoint
.line) {
300
// remove and add the
breakpoint
, to clean up things like the sidebar
301
this.removeBreakpoint(
breakpoint
);
302
breakpoint
.sourceID = sourceID;
303
this.addBreakpoint(
breakpoint
);
305
if (
breakpoint
.enabled)
306
InspectorBackend.addBreakpoint(
breakpoint
.sourceID,
breakpoint
.line,
breakpoint
.condition)
[
all
...]
SourceView.js
106
var
breakpoint
= new WebInspector.
Breakpoint
(this.resource.url, line, sourceID);
107
WebInspector.panels.scripts.addBreakpoint(
breakpoint
);
111
_removeBreakpoint: function(
breakpoint
)
114
WebInspector.panels.scripts.removeBreakpoint(
breakpoint
);
ScriptView.js
68
var
breakpoint
= new WebInspector.
Breakpoint
(this.script.sourceURL, line, this.script.sourceID);
69
WebInspector.panels.scripts.addBreakpoint(
breakpoint
);
inspector.css
[
all
...]
/external/v8/test/mjsunit/
debug-changebreakpoint.js
70
testArguments(dcp, '{"
breakpoint
":0,"condition":"false"}', false);
72
testArguments(dcp, '{"
breakpoint
":3,"condition":"false"}', false);
73
testArguments(dcp, '{"
breakpoint
":"xx","condition":"false"}', false);
76
testArguments(dcp, '{"
breakpoint
":1}', true);
77
testArguments(dcp, '{"
breakpoint
":1,"enabled":"true"}', true);
78
testArguments(dcp, '{"
breakpoint
":1,"enabled":"false"}', true);
79
testArguments(dcp, '{"
breakpoint
":1,"condition":"1==2"}', true);
80
testArguments(dcp, '{"
breakpoint
":1,"condition":"false"}', true);
81
testArguments(dcp, '{"
breakpoint
":1,"ignoreCount":7}', true);
82
testArguments(dcp, '{"
breakpoint
":1,"ignoreCount":0}', true)
[
all
...]
debug-enable-disable-breakpoints.js
51
// Set a
breakpoint
in f.
56
// Disable the
breakpoint
.
61
// Enable the
breakpoint
.
66
// Set another
breakpoint
in f at the same place.
71
// Disable the second
breakpoint
.
76
// Disable the first
breakpoint
.
87
// Disable the first
breakpoint
.
debug-conditional-breakpoints.js
51
// Conditional
breakpoint
which syntax error.
59
// Conditional
breakpoint
which evaluates to false.
67
// Conditional
breakpoint
which evaluates to true.
75
// Conditional
breakpoint
which different types of quotes.
105
// Conditional
breakpoint
which checks global variable.
117
// Conditional
breakpoint
which checks global variable.
127
// Conditional
breakpoint
which checks a parameter.
137
// Conditional
breakpoint
which checks a local variable.
147
// Multiple conditional
breakpoint
which the same condition.
160
// Multiple conditional
breakpoint
which different conditions
[
all
...]
debug-clearbreakpoint.js
70
testArguments(dcp, '{"
breakpoint
":0}', false);
72
testArguments(dcp, '{"
breakpoint
":3}', false);
73
testArguments(dcp, '{"
breakpoint
":"xx"}', false);
76
testArguments(dcp, '{"
breakpoint
":1}', true);
79
testArguments(dcp, '{"
breakpoint
":1}', false);
debug-ignore-breakpoints.js
51
// Set a
breakpoint
in f.
61
// Set another
breakpoint
in f at the same place.
debug-multiple-breakpoints.js
55
// Set a
breakpoint
in f.
60
// Set another
breakpoint
in f at the same place.
debug-clearbreakpointgroup.js
65
// Clear
breakpoint
group 1.
100
// Call function 'g' from the compiled script to trigger
breakpoint
.
debug-breakpoints.js
63
// Test set and clear
breakpoint
at the first possible location (line 0,
debug-step.js
63
// Set a
breakpoint
on the for statement (line 1).
debug-evaluate.js
149
// Set a break point at return in f and invoke g to hit the
breakpoint
.
debug-stepin-call-function-stub.js
97
// Test stepping into function call when a
breakpoint
is set at the place
debug-handle.js
240
// Set a break point at return in f and invoke g to hit the
breakpoint
.
/external/libxml2/
xmlmemory.c
138
*
Breakpoint
to use in conjunction with xmlMemStopAtBlock. When the block
139
* number reaches the specified value this function is called. One need to add a
breakpoint
924
char *
breakpoint
;
local
939
breakpoint
= getenv("XML_MEM_BREAKPOINT");
940
if (
breakpoint
!= NULL) {
941
sscanf(
breakpoint
, "%ud", &xmlMemStopAtBlock);
945
breakpoint
= getenv("XML_MEM_TRACE");
946
if (
breakpoint
!= NULL) {
947
sscanf(
breakpoint
, "%p", &xmlMemTraceBlockAt);
/external/webkit/WebKit/chromium/src/js/
DebuggerAgent.js
236
* @param {number} sourceId Id of the script fot the
breakpoint
.
237
* @param {number} line Number of the line for the
breakpoint
.
238
* @param {?string} condition The
breakpoint
condition.
291
// It is necessary for being able to change a
breakpoint
just after it
292
// has been created (since we need an existing
breakpoint
id for that).
298
* @param {number} sourceId Id of the script for the
breakpoint
.
299
* @param {number} line Number of the line for the
breakpoint
.
327
// If we don't know id of this
breakpoint
in the v8 debugger we cannot send
337
* @param {number} sourceId Id of the script for the
breakpoint
.
338
* @param {number} line Number of the line for the
breakpoint
[
all
...]
/external/v8/src/
d8.js
143
result += '
breakpoint
';
729
// Check for
breakpoint
condition.
736
// Check for script
breakpoint
(name:line[:column]). If no ':' in break
781
request.arguments.
breakpoint
= parseInt(args);
824
print('clear <
breakpoint
#>');
935
result = 'set
breakpoint
#';
936
result += body.
breakpoint
;
941
result = 'cleared
breakpoint
#';
942
result += body.
breakpoint
;
[
all
...]
debug-debugger.js
86
var break_point = new
BreakPoint
(source_position, opt_line, opt_column, opt_script_break_point);
96
function
BreakPoint
(source_position, opt_line, opt_column, opt_script_break_point) {
112
BreakPoint
.prototype.number = function() {
117
BreakPoint
.prototype.func = function() {
122
BreakPoint
.prototype.source_position = function() {
127
BreakPoint
.prototype.hit_count = function() {
132
BreakPoint
.prototype.active = function() {
140
BreakPoint
.prototype.condition = function() {
148
BreakPoint
.prototype.ignoreCount = function() {
153
BreakPoint
.prototype.script_break_point = function()
[
all
...]
/external/qemu/
cpu-all.h
779
/*
Breakpoint
/watchpoint flags */
789
CPUBreakpoint **
breakpoint
);
791
void cpu_breakpoint_remove_by_ref(CPUState *env, CPUBreakpoint *
breakpoint
);
exec.c
[
all
...]
/external/webkit/JavaScriptCore/assembler/
MacroAssemblerX86Common.h
849
void
breakpoint
()
function in class:JSC::MacroAssemblerX86Common
Completed in 78 milliseconds
1
2