HomeSort by relevance Sort by last modified time
    Searched refs:ErrorString (Results 51 - 75 of 98) sorted by null

1 23 4

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorWorkerAgent.cpp 151 void InspectorWorkerAgent::enable(ErrorString*)
159 void InspectorWorkerAgent::disable(ErrorString*)
167 void InspectorWorkerAgent::canInspectWorkers(ErrorString*, bool* result)
172 void InspectorWorkerAgent::connectToWorker(ErrorString* error, int workerId)
181 void InspectorWorkerAgent::disconnectFromWorker(ErrorString* error, int workerId)
190 void InspectorWorkerAgent::sendMessageToWorker(ErrorString* error, int workerId, const RefPtr<JSONObject>& message)
199 void InspectorWorkerAgent::setAutoconnectToWorkers(ErrorString*, bool value)
InspectorApplicationCacheAgent.cpp 65 ErrorString error;
70 void InspectorApplicationCacheAgent::enable(ErrorString*)
98 void InspectorApplicationCacheAgent::getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest> >& result)
123 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId)
125 LocalFrame* frame = m_pageAgent->assertFrame(errorString, frameId);
129 return InspectorPageAgent::assertDocumentLoader(errorString, frame);
132 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL)
134 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId)
    [all...]
InjectedScript.cpp 61 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails)
69 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
72 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
80 makeEvalCall(errorString, function, result, wasThrown);
83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const Vector<ScriptValue>& asyncCallStacks, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails)
94 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
97 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result
    [all...]
InspectorDebuggerAgent.cpp 190 void InspectorDebuggerAgent::enable(ErrorString*)
201 void InspectorDebuggerAgent::disable(ErrorString*)
260 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active)
265 void InspectorDebuggerAgent::setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload)
333 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const String* const optionalCondition, const bool* isAntiBreakpoint, BreakpointId* outBreakpointId, RefPtr<Array<TypeBuilder::Debugger::Location> >& locations)
337 *errorString = "Either url or urlRegex must be specified.";
348 *errorString = "Incorrect column number";
360 *errorString = "Breakpoint at specified location already exists.";
380 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumbe (…)
    [all...]
InspectorPageAgent.cpp 243 static void resourceContent(ErrorString* errorString, LocalFrame* frame, const KURL& url, String* result, bool* base64Encoded)
245 DocumentLoader* loader = InspectorPageAgent::assertDocumentLoader(errorString, frame);
250 *errorString = "No resource with given URL found";
457 ErrorString error;
465 ErrorString error;
487 void InspectorPageAgent::enable(ErrorString*)
505 void InspectorPageAgent::disable(ErrorString*)
548 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* identifier)
566 void InspectorPageAgent::removeScriptToEvaluateOnLoad(ErrorString* error, const String& identifier
    [all...]
InspectorDOMAgent.cpp 278 ErrorString error;
407 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId)
411 *errorString = "Could not find node with given id";
417 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId)
419 Node* node = assertNode(errorString, nodeId);
424 *errorString = "Document is not available";
430 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId
    [all...]
InspectorLayerTreeAgent.cpp 179 void InspectorLayerTreeAgent::enable(ErrorString*)
189 void InspectorLayerTreeAgent::disable(ErrorString*)
193 ErrorString unused;
286 GraphicsLayer* InspectorLayerTreeAgent::layerById(ErrorString* errorString, const String& layerId)
291 *errorString = "Invalid layer id";
296 *errorString = "Not in compositing mode";
302 *errorString = "No layer matching given id found";
306 void InspectorLayerTreeAgent::compositingReasons(ErrorString* errorString, const String& layerId, RefPtr<TypeBuilder::Array<String> >& reasonStrings
    [all...]
PageRuntimeAgent.cpp 77 void PageRuntimeAgent::enable(ErrorString* errorString)
82 InspectorRuntimeAgent::enable(errorString);
91 void PageRuntimeAgent::run(ErrorString* errorString)
121 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId)
127 *errorString = "Internal error: main world execution context not found.";
132 *errorString = "Execution context with given id not found.";
InspectorDOMDebuggerAgent.cpp 174 void InspectorDOMDebuggerAgent::setEventListenerBreakpoint(ErrorString* error, const String& eventName, const String* targetName)
179 void InspectorDOMDebuggerAgent::setInstrumentationBreakpoint(ErrorString* error, const String& eventName)
195 void InspectorDOMDebuggerAgent::setBreakpoint(ErrorString* error, const String& eventName, const String* targetName)
219 void InspectorDOMDebuggerAgent::removeEventListenerBreakpoint(ErrorString* error, const String& eventName, const String* targetName)
224 void InspectorDOMDebuggerAgent::removeInstrumentationBreakpoint(ErrorString* error, const String& eventName)
229 void InspectorDOMDebuggerAgent::removeBreakpoint(ErrorString* error, const String& eventName, const String* targetName)
282 static int domTypeForName(ErrorString* errorString, const String& typeString)
290 *errorString = "Unknown DOM breakpoint type: " + typeString;
305 void InspectorDOMDebuggerAgent::setDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString
    [all...]
WorkerDebuggerAgent.cpp 106 InjectedScript WorkerDebuggerAgent::injectedScriptForEval(ErrorString* error, const int* executionContextId)
InspectorConsoleAgent.cpp 96 void InspectorConsoleAgent::enable(ErrorString*)
119 void InspectorConsoleAgent::disable(ErrorString*)
130 void InspectorConsoleAgent::clearMessages(ErrorString*)
139 ErrorString error;
152 String errorString;
153 disable(&errorString);
169 void InspectorConsoleAgent::setTracingBasedTimeline(ErrorString*, bool enabled)
217 void InspectorConsoleAgent::setMonitoringXHREnabled(ErrorString*, bool enabled)
342 void InspectorConsoleAgent::addInspectedHeapObject(ErrorString*, int inspectedHeapObjectId)
InspectorTimelineAgent.h 89 typedef String ErrorString;
129 virtual void enable(ErrorString*) OVERRIDE;
130 virtual void disable(ErrorString*) OVERRIDE;
131 virtual void start(ErrorString*, const int* maxCallStackDepth, const bool* bufferEvents, const String* liveEvents, const bool* includeCounters, const bool* includeGPUEvents) OVERRIDE;
132 virtual void stop(ErrorString*) OVERRIDE;
InspectorResourceAgent.cpp 194 ErrorString error;
298 ErrorString error;
658 void InspectorResourceAgent::enable(ErrorString*)
671 void InspectorResourceAgent::disable(ErrorString*)
679 void InspectorResourceAgent::setUserAgentOverride(ErrorString*, const String& userAgent)
684 void InspectorResourceAgent::setExtraHTTPHeaders(ErrorString*, const RefPtr<JSONObject>& headers)
689 void InspectorResourceAgent::getResponseBody(ErrorString* errorString, const String& requestId, String* content, bool* base64Encoded)
693 *errorString = "No resource with given identifier found";
704 *errorString = "Request content was evicted from inspector cache"
    [all...]
InspectorInputAgent.cpp 102 void InspectorInputAgent::dispatchKeyEvent(ErrorString* error, const String& type, const int* modifiers, const double* timestamp, const String* text, const String* unmodifiedText, const String* keyIdentifier, const int* windowsVirtualKeyCode, const int* nativeVirtualKeyCode, const bool* autoRepeat, const bool* isKeypad, const bool* isSystemKey)
133 void InspectorInputAgent::dispatchMouseEvent(ErrorString* error, const String& type, int x, int y, const int* modifiers, const double* timestamp, const String* button, const int* clickCount)
184 void InspectorInputAgent::dispatchTouchEvent(ErrorString* error, const String& type, const RefPtr<JSONArray>& touchPoints, const int* modifiers, const double* timestamp)
InspectorCSSAgent.cpp 412 ErrorString error;
456 void InspectorCSSAgent::enable(ErrorString*, PassRefPtrWillBeRawPtr<EnableCallback> prpCallback)
480 void InspectorCSSAgent::disable(ErrorString*)
636 void InspectorCSSAgent::getMediaQueries(ErrorString* errorString, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> >& medias)
651 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* excludePseudo, const bool* excludeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries)
653 Element* element = elementForId(errorString, nodeId);
655 *errorString = "Node not found";
664 *errorString = "Pseudo element has no parent"
    [all...]
DOMEditor.cpp 461 static void populateErrorString(ExceptionState& exceptionState, ErrorString* errorString)
464 *errorString = DOMException::getErrorName(exceptionState.code());
467 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node> node, Node* anchorNode, ErrorString* errorString)
471 populateErrorString(exceptionState, errorString);
475 bool DOMEditor::removeChild(Node* parentNode, Node* node, ErrorString* errorString)
479 populateErrorString(exceptionState, errorString);
483 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ErrorString* errorString
    [all...]
InjectedScriptHost.cpp 89 ErrorString error;
WorkerInspectorController.cpp 164 ErrorString unused;
  /external/chromium_org/ash/system/chromeos/network/
network_connect.h 65 ASH_EXPORT base::string16 ErrorString(const std::string& error,
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyexpat.h 18 const XML_LChar * (*ErrorString)(enum XML_Error code);
  /external/stressapptest/src/
os.cc 194 string errtxt = ErrorString(err);
205 string errtxt = ErrorString(err);
453 string errtxt = ErrorString(err);
464 string errtxt = ErrorString(err);
470 string errtxt = ErrorString(err);
493 string errtxt = ErrorString(err);
502 string errtxt = ErrorString(err);
521 string errtxt = ErrorString(err);
607 string errtxt = ErrorString(errno);
624 string errtxt = ErrorString(errno)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
InspectorDatabaseAgent.cpp 259 void InspectorDatabaseAgent::enable(ErrorString*)
271 void InspectorDatabaseAgent::disable(ErrorString*)
284 void InspectorDatabaseAgent::getDatabaseTableNames(ErrorString* error, const String& databaseId, RefPtr<TypeBuilder::Array<String> >& names)
302 void InspectorDatabaseAgent::executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtrWillBeRawPtr<ExecuteSQLCallback> prpRequestCallback)
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
InspectorFileSystemAgent.cpp 609 void InspectorFileSystemAgent::enable(ErrorString*)
617 void InspectorFileSystemAgent::disable(ErrorString*)
625 void InspectorFileSystemAgent::requestFileSystemRoot(ErrorString* error, const String& origin, const String& type, PassRefPtrWillBeRawPtr<RequestFileSystemRootCallback> requestCallback)
637 void InspectorFileSystemAgent::requestDirectoryContent(ErrorString* error, const String& url, PassRefPtrWillBeRawPtr<RequestDirectoryContentCallback> requestCallback)
649 void InspectorFileSystemAgent::requestMetadata(ErrorString* error, const String& url, PassRefPtrWillBeRawPtr<RequestMetadataCallback> requestCallback)
661 void InspectorFileSystemAgent::requestFileContent(ErrorString* error, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtrWillBeRawPtr<RequestFileContentCallback> requestCallback)
675 void InspectorFileSystemAgent::deleteEntry(ErrorString* error, const String& urlString, PassRefPtrWillBeRawPtr<DeleteEntryCallback> requestCallback)
708 bool InspectorFileSystemAgent::assertEnabled(ErrorString* error)
717 ExecutionContext* InspectorFileSystemAgent::assertExecutionContextForOrigin(ErrorString* error, SecurityOrigin* origin)
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.cpp 589 ErrorString error;
594 void InspectorIndexedDBAgent::enable(ErrorString*)
599 void InspectorIndexedDBAgent::disable(ErrorString*)
604 static Document* assertDocument(ErrorString* errorString, LocalFrame* frame)
609 *errorString = "No document for given frame found";
614 static IDBFactory* assertIDBFactory(ErrorString* errorString, Document* document)
618 *errorString = "No IndexedDB factory for given frame found";
624 *errorString = "No IndexedDB factory for given frame found"
    [all...]

Completed in 342 milliseconds

1 23 4