Home
last modified time | relevance | path

Searched refs:opt_line (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/debug/
Ddebug.js223 function ScriptBreakPoint(type, script_id_or_name, opt_line, opt_column, argument
235 this.line_ = opt_line || 0;
474 Debug.findFunctionSourceLocation = function(func, opt_line, opt_column) { argument
477 return %ScriptLocationFromLine(script, opt_line, opt_column, script_offset);
483 Debug.findScriptSourcePosition = function(script, opt_line, opt_column) { argument
484 var location = %ScriptLocationFromLine(script, opt_line, opt_column, 0);
522 Debug.setBreakPoint = function(func, opt_line, opt_column, opt_condition) { argument
530 this.findFunctionSourceLocation(func, opt_line, opt_column).position;
656 opt_line, opt_column, opt_condition, argument
660 new ScriptBreakPoint(type, script_id_or_name, opt_line, opt_column,
[all …]
/external/icu/icu4c/source/test/perf/ubrkperf/
Dubrkperfold.cpp116 UBool opt_line = FALSE; variable
147 {"-line", OptSpec::FLAG, &opt_line},
191 } else if(opt_line == TRUE) { in createMACBrkIt()
212 } else if(opt_line == TRUE) { in createICUBrkIt()
Dubrkperf.cpp48 } else if(opt_line == TRUE) {
/external/v8/src/runtime/
Druntime-debug.cc1654 Handle<Object> opt_line, in ScriptLocationFromLine() argument
1661 if (!opt_line->IsNullOrUndefined(isolate)) { in ScriptLocationFromLine()
1662 CHECK(opt_line->IsNumber()); in ScriptLocationFromLine()
1663 line = NumberToInt32(*opt_line) - script->line_offset(); in ScriptLocationFromLine()
1709 CONVERT_ARG_HANDLE_CHECKED(Object, opt_line, 1); in RUNTIME_FUNCTION()
1716 return *ScriptLocationFromLine(isolate, script_handle, opt_line, opt_column, in RUNTIME_FUNCTION()
1725 CONVERT_ARG_HANDLE_CHECKED(Object, opt_line, 1); in RUNTIME_FUNCTION()
1732 return *ScriptLocationFromLine(isolate, script, opt_line, opt_column, offset); in RUNTIME_FUNCTION()