• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/agents/

Lines Matching refs:ASCIILiteral

60     : InspectorAgentBase(ASCIILiteral("Debugger"))
154 breakpointObject->setString(ASCIILiteral("url"), url);
155 breakpointObject->setNumber(ASCIILiteral("lineNumber"), lineNumber);
156 breakpointObject->setNumber(ASCIILiteral("columnNumber"), columnNumber);
157 breakpointObject->setString(ASCIILiteral("condition"), condition);
158 breakpointObject->setBoolean(ASCIILiteral("isRegex"), isRegex);
159 breakpointObject->setBoolean(ASCIILiteral("autoContinue"), autoContinue);
162 breakpointObject->setArray(ASCIILiteral("actions"), actions);
212 *errorString = ASCIILiteral("BreakpointAction of incorrect type, expected object");
217 if (!object->getString(ASCIILiteral("type"), &typeString)) {
218 *errorString = ASCIILiteral("BreakpointAction had type missing");
224 *errorString = ASCIILiteral("BreakpointAction had unknown type");
231 object->getNumber(ASCIILiteral("id"), &identifier);
234 object->getString(ASCIILiteral("data"), &data);
246 *errorString = ASCIILiteral("Either url or urlRegex must be specified.");
256 *errorString = ASCIILiteral("Breakpoint at specified location already exists.");
264 (*options)->getString(ASCIILiteral("condition"), &condition);
265 (*options)->getBoolean(ASCIILiteral("autoContinue"), &autoContinue);
266 actions = (*options)->getArray(ASCIILiteral("actions"));
291 if (!location->getString(ASCIILiteral("scriptId"), &scriptIDStr) || !location->getNumber(ASCIILiteral("lineNumber"), lineNumber)) {
293 *errorString = ASCIILiteral("scriptId and lineNumber are required.");
299 location->getNumber(ASCIILiteral("columnNumber"), columnNumber);
315 (*options)->getString(ASCIILiteral("condition"), &condition);
316 (*options)->getBoolean(ASCIILiteral("autoContinue"), &autoContinue);
317 actions = (*options)->getArray(ASCIILiteral("actions"));
326 *errorString = ASCIILiteral("Breakpoint at specified location already exists.");
333 *errorString = ASCIILiteral("Could not resolve breakpoint");
425 *errorString = ASCIILiteral("Function object id is obsolete");
516 *errorString = ASCIILiteral("Internal error. Could not change pause on exceptions state");
523 *errorString = ASCIILiteral("Inspected frame has gone");
551 directive->setString(ASCIILiteral("directiveText"), directiveText);
598 breakpointObject->getBoolean(ASCIILiteral("isRegex"), &isRegex);
600 breakpointObject->getString(ASCIILiteral("url"), &url);
604 breakpointObject->getNumber(ASCIILiteral("lineNumber"), &breakpoint.lineNumber);
605 breakpointObject->getNumber(ASCIILiteral("columnNumber"), &breakpoint.columnNumber);
606 breakpointObject->getString(ASCIILiteral("condition"), &breakpoint.condition);
607 breakpointObject->getBoolean(ASCIILiteral("autoContinue"), &breakpoint.autoContinue);
609 RefPtr<InspectorArray> actions = breakpointObject->getArray(ASCIILiteral("actions"));
731 *errorString = ASCIILiteral("Can only perform operation while paused.");