Lines Matching defs:source
2 // Use of this source code is governed by a BSD-style license that can be
502 // 6: Source position
542 // Find source position in unoptimized code.
571 // Add the source position.
723 // Add the source position.
1106 // args[1]: number: break source position (within the function source)
1126 // Changes the state of a break point in a script and returns source position
1130 // args[1]: number: break source position (within the script source)
1253 // Check the execution state and decode arguments frame and source to be
1261 CONVERT_ARG_HANDLE_CHECKED(String, source, 3);
1268 isolate, DebugEvaluate::Local(isolate, id, inlined_jsframe_index, source,
1276 // Check the execution state and decode arguments frame and source to be
1282 CONVERT_ARG_HANDLE_CHECKED(String, source, 1);
1288 DebugEvaluate::Global(isolate, source, disable_break, context_extension));
1443 // Patches script source (should be called upon BeforeCompile event).
1450 CONVERT_ARG_HANDLE_CHECKED(String, source, 1);
1461 script->set_source(*source);
1557 // heap traversal to find the function generated for the source position
1657 Handle<String> source = handle(String::cast(script->source()), isolate);
1661 source, info.line_start, info.line_end);
1752 // Get information on a specific source line and column possibly offset by a
1753 // fixed source position. This function is used to find a source position from
1754 // a line and column position. The fixed source position offset is typically
1755 // used to find a source position in a function based on a line and column in
1756 // the source for the function alone. The offset passed will then be the
1757 // start position of the source for the function within the full script source.
1833 Handle<String> source =
1834 handle(String::cast(script_handle->source()), isolate);
1835 Handle<String> str = isolate->factory()->NewSubString(source, start, end);