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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMEditor.h 44 typedef String ErrorString;
61 bool insertBefore(Node* parentNode, PassRefPtr<Node>, Node* anchorNode, ErrorString*);
62 bool removeChild(Node* parentNode, Node*, ErrorString*);
63 bool setAttribute(Element*, const String& name, const String& value, ErrorString*);
64 bool removeAttribute(Element*, const String& name, ErrorString*);
65 bool setOuterHTML(Node*, const String& html, Node** newNode, ErrorString*);
66 bool replaceWholeText(Text*, const String& text, ErrorString*);
InspectorDOMStorageAgent.h 47 typedef String ErrorString;
61 virtual void enable(ErrorString*);
62 virtual void disable(ErrorString*);
63 virtual void getDOMStorageItems(ErrorString*, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items);
64 virtual void setDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key, const String& value);
65 virtual void removeDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key);
79 PassOwnPtr<StorageArea> findStorageArea(ErrorString*, const RefPtr<JSONObject>&, Frame*&);
InspectorIndexedDBAgent.h 43 typedef String ErrorString;
57 virtual void enable(ErrorString*);
58 virtual void disable(ErrorString*);
59 virtual void requestDatabaseNames(ErrorString*, const String& securityOrigin, PassRefPtr<RequestDatabaseNamesCallback>);
60 virtual void requestDatabase(ErrorString*, const String& securityOrigin, const String& databaseName, PassRefPtr<RequestDatabaseCallback>);
61 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtr<RequestDataCallback>);
62 virtual void clearObjectStore(ErrorString*, const String& in_securityOrigin, const String& in_databaseName, const String& in_objectStoreName, PassRefPtr<ClearObjectStoreCallback>);
InspectorInputAgent.h 43 typedef String ErrorString;
56 virtual void dispatchKeyEvent(ErrorString*, 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 int* macCharCode, const bool* autoRepeat, const bool* isKeypad, const bool* isSystemKey);
57 virtual void dispatchMouseEvent(ErrorString*, const String& type, int x, int y, const int* modifiers, const double* timestamp, const String* button, const int* clickCount, const bool* deviceSpace);
58 virtual void dispatchTouchEvent(ErrorString*, const String& type, const RefPtr<JSONArray>& touchPoints, const int* modifiers, const double* timestamp);
59 virtual void dispatchGestureEvent(ErrorString*, const String& type, int x, int y, const double* timestamp, const int* deltaX, const int* deltaY, const double* scale);
InspectorMemoryAgent.h 42 typedef String ErrorString;
53 virtual void getDOMCounters(ErrorString*, int* documents, int* nodes, int* jsEventListeners);
InspectorApplicationCacheAgent.h 41 typedef String ErrorString;
62 virtual void enable(ErrorString*);
63 virtual void getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest> >& result);
64 virtual void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL);
65 virtual void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>&);
73 DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId);
InspectorDOMDebuggerAgent.h 53 typedef String ErrorString;
63 virtual void setXHRBreakpoint(ErrorString*, const String& url);
64 virtual void removeXHRBreakpoint(ErrorString*, const String& url);
65 virtual void setEventListenerBreakpoint(ErrorString*, const String& eventName);
66 virtual void removeEventListenerBreakpoint(ErrorString*, const String& eventName);
67 virtual void setInstrumentationBreakpoint(ErrorString*, const String& eventName);
68 virtual void removeInstrumentationBreakpoint(ErrorString*, const String& eventName);
69 virtual void setDOMBreakpoint(ErrorString*, int nodeId, const String& type);
70 virtual void removeDOMBreakpoint(ErrorString*, int nodeId, const String& type);
113 void setBreakpoint(ErrorString*, const String& eventName)
    [all...]
InspectorDatabaseAgent.h 47 typedef String ErrorString;
64 virtual void enable(ErrorString*);
65 virtual void disable(ErrorString*);
66 virtual void getDatabaseTableNames(ErrorString*, const String& databaseId, RefPtr<TypeBuilder::Array<String> >& names);
67 virtual void executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtr<ExecuteSQLCallback>);
InspectorRuntimeAgent.h 47 typedef String ErrorString;
55 virtual void enable(ErrorString*) { m_enabled = true; }
56 virtual void disable(ErrorString*) { m_enabled = false; }
57 virtual void evaluate(ErrorString*,
67 virtual void callFunctionOn(ErrorString*,
76 virtual void releaseObject(ErrorString*, const String& objectId);
77 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties);
78 virtual void releaseObjectGroup(ErrorString*, const String& objectGroup);
79 virtual void run(ErrorString*);
83 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) = 0
    [all...]
InspectorWorkerAgent.h 45 typedef String ErrorString;
62 virtual void enable(ErrorString*);
63 virtual void disable(ErrorString*);
64 virtual void canInspectWorkers(ErrorString*, bool*);
65 virtual void connectToWorker(ErrorString*, int workerId);
66 virtual void disconnectFromWorker(ErrorString*, int workerId);
67 virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<JSONObject>& message);
68 virtual void setAutoconnectToWorkers(ErrorString*, bool value);
InjectedScriptBase.h 43 typedef String ErrorString;
64 void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
InspectorAgent.h 49 typedef String ErrorString;
62 void enable(ErrorString*);
63 void disable(ErrorString*);
64 void reset(ErrorString*);
InspectorCanvasAgent.h 53 typedef String ErrorString;
76 virtual void enable(ErrorString*);
77 virtual void disable(ErrorString*);
78 virtual void dropTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&);
79 virtual void hasUninstrumentedCanvases(ErrorString*, bool*);
80 virtual void captureFrame(ErrorString*, const TypeBuilder::Page::FrameId*, TypeBuilder::Canvas::TraceLogId*);
81 virtual void startCapturing(ErrorString*, const TypeBuilder::Page::FrameId*, TypeBuilder::Canvas::TraceLogId*);
82 virtual void stopCapturing(ErrorString*, const TypeBuilder::Canvas::TraceLogId&);
83 virtual void getTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, const int*, const int*, RefPtr<TypeBuilder::Canvas::TraceLog>&);
84 virtual void replayTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, RefPtr<TypeBuilder::Canvas::ResourceState>&, double (…)
    [all...]
InspectorConsoleAgent.h 60 typedef String ErrorString;
68 virtual void enable(ErrorString*);
69 virtual void disable(ErrorString*);
70 virtual void clearMessages(ErrorString*);
101 virtual void setMonitoringXHREnabled(ErrorString*, bool enabled);
102 virtual void addInspectedNode(ErrorString*, int nodeId) = 0;
103 virtual void addInspectedHeapObject(ErrorString*, int inspectedHeapObjectId);
InspectorHeapProfilerAgent.h 49 typedef String ErrorString;
57 virtual void collectGarbage(ErrorString*);
58 virtual void clearProfiles(ErrorString*);
60 virtual void enable(ErrorString*);
61 virtual void disable(ErrorString*);
62 virtual void getHeapSnapshot(ErrorString*, int uid);
63 virtual void removeProfile(ErrorString*, int uid);
64 virtual void startTrackingHeapObjects(ErrorString*);
65 virtual void stopTrackingHeapObjects(ErrorString*, const bool* reportProgress);
71 virtual void takeHeapSnapshot(ErrorString*, const bool* reportProgress)
    [all...]
InspectorLayerTreeAgent.h 52 typedef String ErrorString;
71 virtual void enable(ErrorString*);
72 virtual void disable(ErrorString*);
73 virtual void compositingReasons(ErrorString*, const String& layerId, RefPtr<TypeBuilder::Array<String> >&);
74 virtual void makeSnapshot(ErrorString*, const String& layerId, String* snapshotId);
75 virtual void releaseSnapshot(ErrorString*, const String& snapshotId);
76 virtual void replaySnapshot(ErrorString*, const String& snapshotId, const int* fromStep, const int* toStep, String* dataURL);
77 virtual void profileSnapshot(ErrorString*, const String& snapshotId, const int* minRepeatCount, const double* minDuration, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >&);
85 GraphicsLayer* layerById(ErrorString*, const String& layerId);
86 const LayerSnapshot* snapshotById(ErrorString*, const String& snapshotId)
    [all...]
InspectorProfilerAgent.h 51 typedef String ErrorString;
62 virtual void enable(ErrorString*);
63 virtual void disable(ErrorString*);
64 virtual void setSamplingInterval(ErrorString*, int);
65 virtual void start(ErrorString* = 0);
66 virtual void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>&);
81 void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>*);
InspectorStyleSheet.h 55 typedef String ErrorString;
InspectorResourceAgent.h 74 typedef String ErrorString;
134 virtual void enable(ErrorString*);
135 virtual void disable(ErrorString*);
136 virtual void setUserAgentOverride(ErrorString*, const String& userAgent);
137 virtual void setExtraHTTPHeaders(ErrorString*, const RefPtr<JSONObject>&);
138 virtual void getResponseBody(ErrorString*, const String& requestId, String* content, bool* base64Encoded);
140 virtual void replayXHR(ErrorString*, const String& requestId);
142 virtual void canClearBrowserCache(ErrorString*, bool*);
143 virtual void clearBrowserCache(ErrorString*);
144 virtual void canClearBrowserCookies(ErrorString*, bool*)
    [all...]
InspectorDebuggerAgent.h 62 typedef String ErrorString;
77 virtual void canSetScriptSource(ErrorString*, bool* result) { *result = true; }
92 virtual void enable(ErrorString*);
93 virtual void disable(ErrorString*);
94 virtual void setBreakpointsActive(ErrorString*, bool active);
95 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload);
97 virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const String* optionalCondition, const bool* isAntiBreakpoint, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations);
98 virtual void setBreakpoint(ErrorString*, const RefPtr<JSONObject>& location, const String* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Debugger::Location>& actualLocation);
99 virtual void removeBreakpoint(ErrorString*, const String& breakpointId);
100 virtual void continueToLocation(ErrorString*, const RefPtr<JSONObject>& location, const bool* interstateLocationOpt)
    [all...]
InspectorPageAgent.h 62 typedef String ErrorString;
90 virtual void enable(ErrorString*);
91 virtual void disable(ErrorString*);
92 virtual void addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* result);
93 virtual void removeScriptToEvaluateOnLoad(ErrorString*, const String& identifier);
94 virtual void reload(ErrorString*, const bool* optionalIgnoreCache, const String* optionalScriptToEvaluateOnLoad, const String* optionalScriptPreprocessor);
95 virtual void navigate(ErrorString*, const String& url);
96 virtual void getNavigationHistory(ErrorString*, int*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::NavigationEntry> >&);
97 virtual void navigateToHistoryEntry(ErrorString*, int);
98 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> >& cookies)
    [all...]
  /frameworks/compile/mclinker/tools/mcld/lib/Core/
Linker.cpp 27 static const char* ErrorString[] = {
58 return ErrorString[ static_cast<size_t>(pErrCode) ];
  /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/chromium_org/ash/system/chromeos/network/
network_connect.cc 489 string16 ErrorString(const std::string& error,

Completed in 248 milliseconds

1 2