/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorDOMStorageAgent.cpp | 55 static bool hadException(ExceptionState& exceptionState, ErrorString* errorString) 62 *errorString = "Security error"; 65 *errorString = "Unknown DOM storage error"; 103 void InspectorDOMStorageAgent::enable(ErrorString*) 109 void InspectorDOMStorageAgent::disable(ErrorString*) 115 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items) 118 OwnPtrWillBeRawPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame); 127 if (hadException(exceptionState, errorString)) [all...] |
InspectorTracingAgent.cpp | 38 void InspectorTracingAgent::start(ErrorString*, const String& categoryFilter, const String&, const double*, String* outSessionId)
|
InspectorDebuggerAgent.cpp | 164 void InspectorDebuggerAgent::enable(ErrorString*) 175 void InspectorDebuggerAgent::disable(ErrorString*) 232 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active) 237 void InspectorDebuggerAgent::setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload) 310 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) 314 *errorString = "Either url or urlRegex must be specified."; 325 *errorString = "Incorrect column number"; 337 *errorString = "Breakpoint at specified location already exists."; 357 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumbe (…) [all...] |
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...] |
InspectorPageAgent.cpp | 252 void InspectorPageAgent::resourceContent(ErrorString* errorString, LocalFrame* frame, const KURL& url, String* result, bool* base64Encoded) 254 DocumentLoader* loader = assertDocumentLoader(errorString, frame); 258 *errorString = "No resource with given URL found"; 372 ErrorString error; 380 ErrorString error; 402 void InspectorPageAgent::enable(ErrorString*) 410 void InspectorPageAgent::disable(ErrorString*) 448 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* identifier) 466 void InspectorPageAgent::removeScriptToEvaluateOnLoad(ErrorString* error, const String& identifier [all...] |
InjectedScript.cpp | 60 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) 68 makeEvalCall(errorString, function, result, wasThrown); 71 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) 79 makeEvalCall(errorString, function, result, wasThrown); 82 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) 93 makeEvalCall(errorString, function, result, wasThrown); 96 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result [all...] |
InspectorLayerTreeAgent.cpp | 169 void InspectorLayerTreeAgent::enable(ErrorString*) 179 void InspectorLayerTreeAgent::disable(ErrorString*) 183 ErrorString unused; 276 GraphicsLayer* InspectorLayerTreeAgent::layerById(ErrorString* errorString, const String& layerId) 281 *errorString = "Invalid layer id"; 286 *errorString = "Not in compositing mode"; 292 *errorString = "No layer matching given id found"; 296 void InspectorLayerTreeAgent::compositingReasons(ErrorString* errorString, const String& layerId, RefPtr<TypeBuilder::Array<String> >& reasonStrings [all...] |
InspectorDOMAgent.cpp | 267 ErrorString error; 395 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) 399 *errorString = "Could not find node with given id"; 405 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) 407 Node* node = assertNode(errorString, nodeId); 412 *errorString = "Document is not available"; 418 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId [all...] |
PageRuntimeAgent.cpp | 66 void PageRuntimeAgent::enable(ErrorString* errorString) 71 InspectorRuntimeAgent::enable(errorString); 105 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId) 111 *errorString = "Internal error: main world execution context not found."; 116 *errorString = "Execution context with given id not found.";
|
InspectorDOMDebuggerAgent.cpp | 157 void InspectorDOMDebuggerAgent::setEventListenerBreakpoint(ErrorString* error, const String& eventName, const String* targetName) 162 void InspectorDOMDebuggerAgent::setInstrumentationBreakpoint(ErrorString* error, const String& eventName) 178 void InspectorDOMDebuggerAgent::setBreakpoint(ErrorString* error, const String& eventName, const String* targetName) 194 void InspectorDOMDebuggerAgent::removeEventListenerBreakpoint(ErrorString* error, const String& eventName, const String* targetName) 199 void InspectorDOMDebuggerAgent::removeInstrumentationBreakpoint(ErrorString* error, const String& eventName) 204 void InspectorDOMDebuggerAgent::removeBreakpoint(ErrorString* error, const String& eventName, const String* targetName) 257 static int domTypeForName(ErrorString* errorString, const String& typeString) 265 *errorString = "Unknown DOM breakpoint type: " + typeString; 280 void InspectorDOMDebuggerAgent::setDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString [all...] |
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*, RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent> >& events) OVERRIDE;
|
WorkerDebuggerAgent.cpp | 120 InjectedScript WorkerDebuggerAgent::injectedScriptForEval(ErrorString* error, const int* executionContextId)
|
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, const bool* deviceSpace) 187 void InspectorInputAgent::dispatchTouchEvent(ErrorString* error, const String& type, const RefPtr<JSONArray>& touchPoints, const int* modifiers, const double* timestamp)
|
InspectorResourceAgent.cpp | 192 ErrorString error; 291 ErrorString error; 620 void InspectorResourceAgent::enable(ErrorString*) 633 void InspectorResourceAgent::disable(ErrorString*) 641 void InspectorResourceAgent::setUserAgentOverride(ErrorString*, const String& userAgent) 646 void InspectorResourceAgent::setExtraHTTPHeaders(ErrorString*, const RefPtr<JSONObject>& headers) 651 void InspectorResourceAgent::getResponseBody(ErrorString* errorString, const String& requestId, String* content, bool* base64Encoded) 655 *errorString = "No resource with given identifier found"; 666 *errorString = "Request content was evicted from inspector cache" [all...] |
InspectorCSSAgent.cpp | 371 ErrorString error; 416 void InspectorCSSAgent::enable(ErrorString*, PassRefPtr<EnableCallback> prpCallback) 440 void InspectorCSSAgent::disable(ErrorString*) 594 void InspectorCSSAgent::getMediaQueries(ErrorString* errorString, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> >& medias) 609 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries) 611 Element* element = elementForId(errorString, nodeId); 613 *errorString = "Node not found"; 622 *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...] |
InjectedScriptBase.cpp | 124 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown) 129 *errorString = "Internal error: result value is empty"; 133 result->asString(errorString); 134 ASSERT(errorString->length()); 139 *errorString = "Internal error: result is not an Object"; 145 *errorString = "Internal error: result is not a pair of value and wasThrown flag";
|
InjectedScriptHost.cpp | 85 ErrorString error;
|
WorkerInspectorController.cpp | 164 ErrorString unused;
|
/external/chromium_org/ash/system/chromeos/network/ |
network_connect.h | 69 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 | 235 void InspectorDatabaseAgent::enable(ErrorString*) 247 void InspectorDatabaseAgent::disable(ErrorString*) 260 void InspectorDatabaseAgent::getDatabaseTableNames(ErrorString* error, const String& databaseId, RefPtr<TypeBuilder::Array<String> >& names) 278 void InspectorDatabaseAgent::executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtr<ExecuteSQLCallback> prpRequestCallback)
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
InspectorFileSystemAgent.cpp | 608 void InspectorFileSystemAgent::enable(ErrorString*) 616 void InspectorFileSystemAgent::disable(ErrorString*) 624 void InspectorFileSystemAgent::requestFileSystemRoot(ErrorString* error, const String& origin, const String& type, PassRefPtr<RequestFileSystemRootCallback> requestCallback) 636 void InspectorFileSystemAgent::requestDirectoryContent(ErrorString* error, const String& url, PassRefPtr<RequestDirectoryContentCallback> requestCallback) 648 void InspectorFileSystemAgent::requestMetadata(ErrorString* error, const String& url, PassRefPtr<RequestMetadataCallback> requestCallback) 660 void InspectorFileSystemAgent::requestFileContent(ErrorString* error, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtr<RequestFileContentCallback> requestCallback) 674 void InspectorFileSystemAgent::deleteEntry(ErrorString* error, const String& urlString, PassRefPtr<DeleteEntryCallback> requestCallback) 707 bool InspectorFileSystemAgent::assertEnabled(ErrorString* error) 716 ExecutionContext* InspectorFileSystemAgent::assertExecutionContextForOrigin(ErrorString* error, SecurityOrigin* origin)
|