Lines Matching full:description

291 //   "description": "A Scope is a named container for variables. Optionally
296 // "description": "Name of the scope such as 'Arguments', 'Locals'."
300 // "description": "An optional hint for how to present this scope in the
307 // "description": "The variables of this scope can be retrieved by
313 // "description": "The number of named variables in this scope. The
319 // "description": "The number of indexed variables in this scope. The
325 // "description": "If true, the number of variables in this scope is
330 // "description": "Optional source for this scope."
334 // "description": "Optional start line of the range covered by this
339 // "description": "Optional start column of the range covered by this
344 // "description": "Optional end line of the range covered by this scope."
348 // "description": "Optional end column of the range covered by this
376 // "description": "Information about a Breakpoint created in setBreakpoints
381 // "description": "An optional unique identifier for the breakpoint."
385 // "description": "If true breakpoint could be set (but not necessarily
390 // "description": "An optional message about the state of the breakpoint.
396 // "description": "The source where the breakpoint is located."
400 // "description": "The start line of the actual range covered by the
405 // "description": "An optional start column of the actual range covered
410 // "description": "An optional end line of the actual range covered by
415 // "description": "An optional end column of the actual range covered by
535 // "description": "Server-initiated event.",
543 // "description": "Type of event."
548 // "description": "Event-specific information."
556 // "description": "Base class of requests, responses, and events.",
560 // "description": "Sequence number."
564 // "description": "Message type.",
580 // "description": "An ExceptionBreakpointsFilter is shown in the UI as an
585 // "description": "The internal ID of the filter. This value is passed
590 // "description": "The name of the filter. This will be shown in the UI."
594 // "description": "Initial value of the filter. If not specified a value
611 // "description": "A Source is a descriptor for source code. It is returned
617 // "description": "The short name of the source. Every source returned
623 // "description": "The path of the source to be shown in the UI. It is
630 // "description": "If sourceReference > 0 the contents of the source must
637 // "description": "An optional hint for how to present the source in the
645 // "description": "The (optional) origin of this source: possible values
654 // "description": "An optional list of sources that are related to this
660 // "description": "Optional data that a debug adapter might want to loop
670 // "description": "The checksums associated with this file."
713 // "description": "A Stackframe contains the source location.",
717 // "description": "An identifier for the stack frame. It must be unique
724 // "description": "The name of the stack frame, typically a method name."
728 // "description": "The optional source of the frame."
732 // "description": "The line within the file of the frame. If source is
737 // "description": "The column within the line. If source is null or
742 // "description": "An optional end line of the range covered by the
747 // "description": "An optional end column of the range covered by the
752 // "description": "A memory reference for the current instruction
757 // "description": "The module associated with this frame, if any."
762 // "description": "An optional hint for how to present this frame in
855 // "description": "A Thread",
859 // "description": "Unique identifier for the thread."
863 // "description": "A name of the thread."
907 // "description": "Event message for 'stopped' event type. The event
922 // "description": "The reason for the event. For backward
924 // the 'description' attribute is missing (but it
928 // "description": {
930 // "description": "The full reason for the event, e.g. 'Paused
936 // "description": "The thread which was stopped."
940 // "description": "Additional information. E.g. if reason is
946 // "description": "If allThreadsStopped is true, a debug adapter
974 EmplaceSafeString(body, "description", exc_bp->label);
989 EmplaceSafeString(body, "description", desc_str);
1027 // If no description has been set, then set it to the default thread stopped
1028 // description. If we have breakpoints that get hit and shouldn't be reported
1029 // as breakpoints, then they will set the description above.
1030 if (!ObjectContainsKey(body, "description")) {
1031 char description[1024];
1032 if (thread.GetStopDescription(description, sizeof(description))) {
1033 EmplaceSafeString(body, "description", std::string(description));
1175 llvm::StringRef description = stream.GetData();
1176 return description.trim().str();
1200 // "description": "A Variable is a name/value pair. Optionally a variable
1216 // "description": "The variable's name."
1220 // "description": "The variable's value. This can be a multi-line text,
1225 // "description": "The type of the variable's value. Typically shown in
1230 // "description": "Properties of a variable that can be used to determine
1235 // "description": "Optional evaluatable name of this variable which can
1241 // "description": "If variablesReference is > 0, the variable is
1247 // "description": "The number of named child variables. The client can
1253 // "description": "The number of indexed child variables. The client
1259 // "description": "A memory reference associated with this variable.
1269 // "description": "A reference that allows the client to request the
1279 // "description": "A reference that allows the client to request the
1291 // "description": "Unofficial extensions to the protocol",
1295 // "description": "The source location where the variable was
1302 // "description": "The source file path where the variable was
1307 // "description": "The 1-indexed source line where the variable
1312 // "description": "The 1-indexed source column where the variable
1319 // "description": "The internal value of the variable as returned by
1327 // "description": "The summary string of the variable. This is
1332 // "description": "The auto generated summary if using
1337 // "description": "An error message generated if LLDB couldn't inspect