Lines Matching refs:bp
53 bp = Debug.setBreakPoint(f, 0, 0, '{{{');
56 Debug.clearBreakPoint(bp);
60 bp = Debug.setBreakPoint(f, 0, 0, 'false');
63 Debug.clearBreakPoint(bp);
67 bp = Debug.setBreakPoint(f, 0, 0, 'true');
70 Debug.clearBreakPoint(bp);
74 bp = Debug.setBreakPoint(f, 0, 0, '"a" == "a"');
77 Debug.clearBreakPoint(bp);
79 bp = Debug.setBreakPoint(f, 0, 0, "'a' == 'a'");
82 Debug.clearBreakPoint(bp);
86 bp = Debug.setBreakPoint(f, 0, 0, '"ab".indexOf("b") > 0');
89 Debug.changeBreakPointCondition(bp, 'Math.sin(Math.PI/2) > 1');
92 Debug.changeBreakPointCondition(bp, '1==1');
95 Debug.clearBreakPoint(bp);
99 bp = Debug.setBreakPoint(f, 0, 0, 'x==1');
105 Debug.clearBreakPoint(bp);
109 bp = Debug.setBreakPoint(g, 0, 0, 'count % 2 == 0');
114 Debug.clearBreakPoint(bp);
118 bp = Debug.setBreakPoint(h, 0, 0, 'x % 2 == 0');
123 Debug.clearBreakPoint(bp);
127 bp = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0');
132 Debug.clearBreakPoint(bp);