Lines Matching refs:TO
13 // contributors may be used to endorse or promote products derived
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // Default number of frames to include in the response to backtrace request.
33 // Regular expression to skip "crud" at the beginning of a source line which is
115 // Create a new break point object and add it to the list of break points.
124 // NOTE: This object does not have a reference to the function having break
125 // point as this would cause function not to be garbage collected when it is
126 // not used any more. We do not want break points to keep functions alive.
213 // If break point has condition try to evaluate it in the top frame.
244 // the break point is triggered and supposed to break execution.
272 //Creates a clone of script breakpoint that is linked to another script.
399 // If the column is undefined the break is on the line. To help locate the
400 // first piece of breakable code on the line try to find the column on the
422 // than it used to be) just ignore it.
456 // Function called from runtime when a new script is compiled to set any script
516 // than one we don't return a value since there is no good way to
517 // decide which one to return. Returning a "random" one, say the
518 // first, would introduce nondeterminism (or something close to it)
618 // Find source position relative to start of the function
628 // If the script for the function has a name convert this to a script break
631 // Adjust the source position to be script relative.
766 // Assign number to the new script break point and add it.
771 // Run through all scripts to see if this script break point matches any
1007 // Add script related information to the event if available.
1102 // Add script information to the event if available.
1260 // Handler may set this field to control debugger state.
1337 // Convert the JSON string to an object.
1358 // ChromeDevTools are switched to 'inlineRefs'
1467 // Failed to generate response - return generic error.
1576 response.failed('"' + target + '" does not evaluate to a function');
1615 // Add the break point number to the response.
1619 // Add break point information to the response.
1707 // Add the cleared break point numbers to the response.
1731 // Add the cleared break point number to the response.
1818 // Add the cleared break point number to the response.
1835 // Default frame range to include in backtrace.
1971 // The expression argument could be an integer so we convert it to a
1976 return response.failed('Failed to convert expression argument to string');
2400 response.failed('Failed to delete: live object list ' + id + ' not found.');
2467 // Check whether the previously processed command caused the VM to become
2491 * Convert an Object to its debugger protocol representation. The representation
2492 * may be serilized to a JSON object using JSON.stringify().
2494 * each property value to a protocol value and adds the property to the result
2497 * @param {Object} object The object to format as protocol object.
2498 * @param {MirrorSerializer} mirror_serializer The serializer to use if any
2522 * Convert an array to its debugger protocol representation. It will convert
2523 * each array element to a protocol value.
2524 * @param {Array} array The array to format as protocol array.
2525 * @param {MirrorSerializer} mirror_serializer The serializer to use if any
2539 * Convert a value to its debugger protocol representation.
2540 * @param {*} value The value to format as protocol value.
2541 * @param {MirrorSerializer} mirror_serializer The serializer to use if any