/external/webkit/Source/WebCore/inspector/ |
InspectorRuntimeAgent.h | 47 typedef String ErrorString; 55 void evaluate(ErrorString*, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result); 56 void evaluateOn(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorObject>* result); 57 void releaseObject(ErrorString*, const String& objectId); 58 void getProperties(ErrorString*, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* result); 59 void setPropertyValue(ErrorString*, const String& objectId, const String& propertyName, const String& expression); 60 void releaseObjectGroup(ErrorString*, const String& objectGroup);
|
InspectorPageAgent.h | 51 typedef String ErrorString; 59 void addScriptToEvaluateOnLoad(ErrorString*, const String& source); 60 void removeAllScriptsToEvaluateOnLoad(ErrorString*); 61 void reloadPage(ErrorString*, const bool* const optionalIgnoreCache); 62 void openInInspectedWindow(ErrorString*, const String& url); 63 void setUserAgentOverride(ErrorString*, const String& userAgent); 64 void getCookies(ErrorString*, RefPtr<InspectorArray>* cookies, WTF::String* cookiesString); 65 void deleteCookie(ErrorString*, const String& cookieName, const String& domain);
|
InspectorCSSAgent.h | 64 void getStylesForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* result); 65 void getInlineStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style); 66 void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style); 67 void getAllStyleSheets(ErrorString*, RefPtr<InspectorArray>* styleSheetInfos); 68 void getStyleSheet(ErrorString*, const String& styleSheetId, RefPtr<InspectorObject>* result); 69 void getStyleSheetText(ErrorString*, const String& styleSheetId, String* result); 70 void setStyleSheetText(ErrorString*, const String& styleSheetId, const String& text); 71 void setPropertyText(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, const String& text, bool overwrite, RefPtr<InspectorObject>* result); 72 void toggleProperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool disable, RefPtr<InspectorObject>* result); 73 void setRuleSelector(ErrorString*, const RefPtr<InspectorObject>& ruleId, const String& selector, RefPtr<InspectorObject>* result) [all...] |
InspectorDOMAgent.h | 71 typedef String ErrorString; 114 void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId); 115 void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<InspectorArray>* result); 116 void getDocument(ErrorString*, RefPtr<InspectorObject>* root); 117 void getChildNodes(ErrorString*, int nodeId); 118 void setAttribute(ErrorString*, int elementId, const String& name, const String& value); 119 void removeAttribute(ErrorString*, int elementId, const String& name); 120 void removeNode(ErrorString*, int nodeId); 121 void setNodeName(ErrorString*, int nodeId, const String& name, int* newId); 122 void getOuterHTML(ErrorString*, int nodeId, WTF::String* outerHTML) [all...] |
InspectorBrowserDebuggerAgent.h | 54 typedef String ErrorString; 66 void setXHRBreakpoint(ErrorString*, const String& url); 67 void removeXHRBreakpoint(ErrorString*, const String& url); 68 void setEventListenerBreakpoint(ErrorString*, const String& eventName); 69 void removeEventListenerBreakpoint(ErrorString*, const String& eventName); 70 void setDOMBreakpoint(ErrorString*, int nodeId, int type); 71 void removeDOMBreakpoint(ErrorString*, int nodeId, int type);
|
InspectorProfilerAgent.h | 54 typedef String ErrorString; 65 void collectGarbage(ErrorString*); 66 void clearProfiles(ErrorString*) { resetState(); } 69 void enable(ErrorString*); 70 void disable(ErrorString*); 71 void isEnabled(ErrorString*, bool* result) { *result = enabled(); } 72 void start(ErrorString*) { startUserInitiatedProfiling(); } 73 void stop(ErrorString*) { stopUserInitiatedProfiling(); } 79 void getProfileHeaders(ErrorString* error, RefPtr<InspectorArray>* headers); 80 void getProfile(ErrorString* error, const String& type, unsigned uid, RefPtr<InspectorObject>* profileObject) [all...] |
InspectorDebuggerAgent.h | 57 typedef String ErrorString; 70 void enable(ErrorString*) { enable(false); } 71 void disable(ErrorString*) { disable(); } 81 void setBreakpointsActive(ErrorString*, bool active); 83 void setBreakpointByUrl(ErrorString*, const String& url, int lineNumber, const int* const optionalColumnNumber, const String* const optionalCondition, String* breakpointId, RefPtr<InspectorArray>* locations); 84 void setBreakpoint(ErrorString*, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* breakpointId, RefPtr<InspectorObject>* actualLocation); 85 void removeBreakpoint(ErrorString*, const String& breakpointId); 86 void continueToLocation(ErrorString*, PassRefPtr<InspectorObject> location); 88 void editScriptSource(ErrorString*, const String& sourceID, const String& newContent, RefPtr<InspectorArray>* newCallFrames); 89 void getScriptSource(ErrorString*, const String& sourceID, String* scriptSource) [all...] |
InspectorDOMStorageAgent.h | 46 typedef String ErrorString; 62 void getDOMStorageEntries(ErrorString*, int storageId, RefPtr<InspectorArray>* entries); 63 void setDOMStorageItem(ErrorString*, int storageId, const String& key, const String& value, bool* success); 64 void removeDOMStorageItem(ErrorString*, int storageId, const String& key, bool* success);
|
InjectedScript.h | 49 typedef String ErrorString; 58 void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result); 59 void evaluateOn(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorObject>* result); 60 void evaluateOnCallFrame(ErrorString*, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result); 61 void getProperties(ErrorString*, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* result); 63 void setPropertyValue(ErrorString*, const String& objectId, const String& propertyName, const String& expression); 83 void makeObjectCall(ErrorString*, ScriptFunctionCall&, RefPtr<InspectorObject>* result);
|
InspectorDatabaseAgent.h | 45 typedef String ErrorString; 64 void enable(ErrorString*); 65 void disable(ErrorString*); 66 void getDatabaseTableNames(ErrorString*, int databaseId, RefPtr<InspectorArray>* names); 67 void executeSQL(ErrorString*, int databaseId, const String& query, bool* success, int* transactionId);
|
InspectorConsoleAgent.h | 53 typedef String ErrorString; 61 void enable(ErrorString*, int* consoleMessageExpireCount); 62 void disable(ErrorString*); 63 void clearConsoleMessages(ErrorString* error); 82 void setMonitoringXHREnabled(ErrorString* error, bool enabled); 83 void addInspectedNode(ErrorString*, int nodeId);
|
InspectorRuntimeAgent.cpp | 52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result) 56 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result); 59 void InspectorRuntimeAgent::evaluateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result) 63 injectedScript.evaluateOn(errorString, objectId, expression, result); 66 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* result) 70 injectedScript.getProperties(errorString, objectId, ignoreHasOwnProperty, result); 73 void InspectorRuntimeAgent::setPropertyValue(ErrorString* errorString, const String& objectId, const String& propertyName, const String& expression [all...] |
InspectorResourceAgent.h | 72 typedef String ErrorString; 87 static void resourceContent(ErrorString*, Frame*, const KURL&, String* result); 88 static void resourceContentBase64(ErrorString*, Frame*, const KURL&, String* result); 119 void enable(ErrorString*); 120 void disable(ErrorString*); 121 void getCachedResources(ErrorString*, RefPtr<InspectorObject>*); 122 void getResourceContent(ErrorString*, const String& frameId, const String& url, const bool* const base64Encode, String* content); 123 void setExtraHeaders(ErrorString*, PassRefPtr<InspectorObject>);
|
InspectorApplicationCacheAgent.h | 47 typedef String ErrorString; 63 void getApplicationCaches(ErrorString*, RefPtr<InspectorObject>* applicationCaches);
|
InspectorDebuggerAgent.cpp | 130 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active) 154 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString*, const String& url, int lineNumber, const int* const optionalColumnNumber, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorArray>* locations) 177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourceId, int* lineNumber, int* columnNumber) 181 *errorString = "sourceId and lineNumber are required."; 189 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorObject>* actualLocation) 195 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber)) 208 *errorString = "Could not resolve breakpoint"; 211 void InspectorDebuggerAgent::removeBreakpoint(ErrorString*, const String& breakpointId [all...] |
InspectorPageAgent.cpp | 86 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source) 91 void InspectorPageAgent::removeAllScriptsToEvaluateOnLoad(ErrorString*) 96 void InspectorPageAgent::reloadPage(ErrorString*, const bool* const optionalIgnoreCache) 101 void InspectorPageAgent::openInInspectedWindow(ErrorString*, const String& url) 119 void InspectorPageAgent::setUserAgentOverride(ErrorString*, const String& userAgent) 157 void InspectorPageAgent::getCookies(ErrorString*, RefPtr<InspectorArray>* cookies, WTF::String* cookiesString) 201 void InspectorPageAgent::deleteCookie(ErrorString*, const String& cookieName, const String& domain)
|
InspectorTimelineAgent.h | 52 typedef String ErrorString; 68 void start(ErrorString* error); 69 void stop(ErrorString* error);
|
InspectorProfilerAgent.cpp | 118 void InspectorProfilerAgent::collectGarbage(WebCore::ErrorString*) 141 void InspectorProfilerAgent::enable(ErrorString*) 149 void InspectorProfilerAgent::disable(ErrorString*) 184 void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<InspectorArray>* headers) 209 void InspectorProfilerAgent::getProfile(ErrorString*, const String& type, unsigned uid, RefPtr<InspectorObject>* profileObject) 230 void InspectorProfilerAgent::removeProfile(ErrorString*, const String& type, unsigned uid) 286 ErrorString error; 360 void InspectorProfilerAgent::takeHeapSnapshot(ErrorString*, bool detailed)
|
InjectedScript.cpp | 57 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) 63 makeObjectCall(errorString, function, result); 66 void InjectedScript::evaluateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result) 71 makeObjectCall(errorString, function, result); 74 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) 81 makeObjectCall(errorString, function, result); 84 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* propertie (…) [all...] |
InspectorConsoleAgent.cpp | 82 void InspectorConsoleAgent::enable(ErrorString*, int* consoleMessageExpireCount) 93 void InspectorConsoleAgent::disable(ErrorString*) 98 void InspectorConsoleAgent::clearConsoleMessages(ErrorString*) 111 ErrorString error; 226 void InspectorConsoleAgent::setMonitoringXHREnabled(ErrorString*, bool enabled) 231 void InspectorConsoleAgent::addInspectedNode(ErrorString*, int nodeId)
|
InspectorController.cpp | 93 ErrorString error; 99 ErrorString error; 254 ErrorString error; 266 ErrorString error; 272 ErrorString error; 325 ErrorString error;
|
InspectorDOMAgent.cpp | 297 ErrorString error; 327 ErrorString error; 400 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) 404 *errorString = "Could not find node with given id"; 410 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) 412 Node* node = assertNode(errorString, nodeId); 417 *errorString = "Node is not an Element"; 424 HTMLElement* InspectorDOMAgent::assertHTMLElement(ErrorString* errorString, int nodeId [all...] |
InspectorCSSAgent.cpp | 184 void InspectorCSSAgent::getStylesForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* result) 186 Element* element = elementForId(errorString, nodeId); 239 void InspectorCSSAgent::getInlineStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) 241 Element* element = elementForId(errorString, nodeId); 252 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) 254 Element* element = elementForId(errorString, nodeId); 263 void InspectorCSSAgent::getAllStyleSheets(ErrorString*, RefPtr<InspectorArray>* styleInfos [all...] |
InspectorStyleSheet.h | 52 typedef String ErrorString; 132 bool setPropertyText(ErrorString*, unsigned index, const String& text, bool overwrite); 133 bool toggleProperty(ErrorString*, unsigned index, bool disable); 176 bool setPropertyText(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, const String& text, bool overwrite); 177 bool toggleProperty(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, bool disable);
|
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
xml.py | 45 self.handle_style_error(error.lineno, 'xml/syntax', 5, expat.ErrorString(error.code))
|