HomeSort by relevance Sort by last modified time
    Searched defs:ErrorString (Results 1 - 19 of 19) sorted by null

  /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);
InspectorApplicationCacheAgent.h 47 typedef String ErrorString;
63 void getApplicationCaches(ErrorString*, RefPtr<InspectorObject>* applicationCaches);
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);
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);
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);
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);
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);
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);
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>);
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);
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...]
InspectorTimelineAgent.h 52 typedef String ErrorString;
68 void start(ErrorString* error);
69 void stop(ErrorString* error);
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...]
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...]
InspectorAgent.h 92 typedef String ErrorString;
110 void reloadPage(ErrorString*, bool ignoreCache);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 39 static const char *ErrorString[] = {
89 return ErrorString[ static_cast<size_t>(pErrCode) ];
Linker.cpp 34 static const char* ErrorString[] = {
65 return ErrorString[ static_cast<size_t>(pErrCode) ];
  /frameworks/compile/mclinker/tools/mcld/lib/Core/
Linker.cpp 27 static const char* ErrorString[] = {
58 return ErrorString[ static_cast<size_t>(pErrCode) ];
  /external/stressapptest/src/
sattypes.h 177 inline string ErrorString(int error_num) {

Completed in 291 milliseconds