Home | History | Annotate | Download | only in inspector

Lines Matching defs:ErrorString

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);
123 void setOuterHTML(ErrorString*, int nodeId, const String& outerHTML, int* newId);
124 void setNodeValue(ErrorString*, int nodeId, const String& value);
125 void getEventListenersForNode(ErrorString*, int nodeId, RefPtr<InspectorArray>* listenersArray);
126 void performSearch(ErrorString*, const String& whitespaceTrimmedQuery, const bool* const runSynchronously);
127 void cancelSearch(ErrorString*);
128 void resolveNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* result);
129 void setSearchingForNode(ErrorString*, bool enabled);
130 void pushNodeToFrontend(ErrorString*, const String& objectId, int* nodeId);
131 void pushNodeByPathToFrontend(ErrorString*, const String& path, int* nodeId);
132 void hideHighlight(ErrorString*);
133 void highlightDOMNode(ErrorString*, int nodeId);
134 void hideDOMNodeHighlight(ErrorString* error) { hideHighlight(error); }
135 void highlightFrame(ErrorString*, const String& frameId);
136 void hideFrameHighlight(ErrorString* error) { hideHighlight(error); }
154 void copyNode(ErrorString*, int nodeId);
181 void highlight(ErrorString*, Node*);
187 Node* assertNode(ErrorString*, int nodeId);
188 Element* assertElement(ErrorString*, int nodeId);
189 HTMLElement* assertHTMLElement(ErrorString*, int nodeId);