HomeSort by relevance Sort by last modified time
    Searched refs:errorString (Results 26 - 50 of 62) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 672 void InspectorCSSAgent::enable(ErrorString*, PassRefPtr<EnableCallback> prpCallback)
729 void InspectorCSSAgent::disable(ErrorString*)
755 ErrorString errorString;
756 m_frontend->namedFlowCreated(buildObjectForNamedFlow(&errorString, namedFlow, documentNodeId));
821 ErrorString errorString;
824 m_frontend->regionLayoutUpdated(buildObjectForNamedFlow(&errorString, namedFlow, documentNodeId));
843 ErrorString errorString;
    [all...]
InspectorHeapProfilerAgent.cpp 77 void InspectorHeapProfilerAgent::clearProfiles(ErrorString*)
104 ErrorString error;
114 void InspectorHeapProfilerAgent::collectGarbage(WebCore::ErrorString*)
164 void InspectorHeapProfilerAgent::startTrackingHeapObjects(ErrorString*)
192 void InspectorHeapProfilerAgent::stopTrackingHeapObjects(ErrorString* error, const bool* reportProgress)
212 void InspectorHeapProfilerAgent::enable(ErrorString*)
217 void InspectorHeapProfilerAgent::disable(ErrorString* error)
223 void InspectorHeapProfilerAgent::getHeapSnapshot(ErrorString* errorString, int rawUid)
239 *errorString = "Profile wasn't found"
    [all...]
InspectorIndexedDBAgent.cpp 556 ErrorString error;
561 void InspectorIndexedDBAgent::enable(ErrorString*)
566 void InspectorIndexedDBAgent::disable(ErrorString*)
571 static Document* assertDocument(ErrorString* errorString, Frame* frame)
576 *errorString = "No document for given frame found";
581 static IDBFactory* assertIDBFactory(ErrorString* errorString, Document* document)
585 *errorString = "No IndexedDB factory for given frame found";
591 *errorString = "No IndexedDB factory for given frame found"
    [all...]
PageDebuggerAgent.cpp 104 ErrorString error;
110 ErrorString error;
114 InjectedScript PageDebuggerAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId)
122 *errorString = "Execution context with given id not found.";
126 void PageDebuggerAgent::setOverlayMessage(ErrorString*, const String* message)
InspectorDOMDebuggerAgent.cpp 148 void InspectorDOMDebuggerAgent::setEventListenerBreakpoint(ErrorString* error, const String& eventName)
153 void InspectorDOMDebuggerAgent::setInstrumentationBreakpoint(ErrorString* error, const String& eventName)
158 void InspectorDOMDebuggerAgent::setBreakpoint(ErrorString* error, const String& eventName)
170 void InspectorDOMDebuggerAgent::removeEventListenerBreakpoint(ErrorString* error, const String& eventName)
175 void InspectorDOMDebuggerAgent::removeInstrumentationBreakpoint(ErrorString* error, const String& eventName)
180 void InspectorDOMDebuggerAgent::removeBreakpoint(ErrorString* error, const String& eventName)
229 static int domTypeForName(ErrorString* errorString, const String& typeString)
237 *errorString = "Unknown DOM breakpoint type: " + typeString;
252 void InspectorDOMDebuggerAgent::setDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString
    [all...]
InspectorResourceAgent.cpp 190 ErrorString error;
281 ErrorString error;
584 void InspectorResourceAgent::enable(ErrorString*)
597 void InspectorResourceAgent::disable(ErrorString*)
605 void InspectorResourceAgent::setUserAgentOverride(ErrorString*, const String& userAgent)
610 void InspectorResourceAgent::setExtraHTTPHeaders(ErrorString*, const RefPtr<JSONObject>& headers)
615 void InspectorResourceAgent::getResponseBody(ErrorString* errorString, const String& requestId, String* content, bool* base64Encoded)
619 *errorString = "No resource with given identifier found";
630 *errorString = "Request content was evicted from inspector cache"
    [all...]
InspectorConsoleAgent.cpp 85 void InspectorConsoleAgent::enable(ErrorString*)
107 void InspectorConsoleAgent::disable(ErrorString*)
117 void InspectorConsoleAgent::clearMessages(ErrorString*)
129 ErrorString error;
139 ErrorString error;
152 String errorString;
153 disable(&errorString);
159 ErrorString error;
169 ErrorString error;
179 ErrorString error
    [all...]
InspectorTimelineAgent.cpp 277 ErrorString error;
300 void InspectorTimelineAgent::enable(ErrorString*)
305 void InspectorTimelineAgent::disable(ErrorString*)
310 void InspectorTimelineAgent::start(ErrorString* errorString, const int* maxCallStackDepth, const bool* bufferEvents, const bool* includeDomCounters, const bool* includeGPUEvents)
317 *errorString = "Timeline is already started";
376 void InspectorTimelineAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent> >& events)
382 *errorString = "Timeline was not started";
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.cpp 54 WebSocketFrame::ParseFrameResult WebSocketFrame::parseFrame(char* data, size_t dataLength, WebSocketFrame& frame, const char*& frameEnd, String& errorString)
89 errorString = "The minimal number of bytes MUST be used to encode the length";
93 errorString = "The minimal number of bytes MUST be used to encode the length";
101 errorString = "WebSocket frame length too large: " + String::number(payloadLength64) + " bytes";
WebSocketFrame.h 60 static ParseFrameResult parseFrame(char* data, size_t dataLength, WebSocketFrame&, const char*& frameEnd, String& errorString); // May modify part of data to unmask the frame.
MainThreadWebSocketChannel.cpp 516 String errorString;
517 WebSocketFrame::ParseFrameResult result = WebSocketFrame::parseFrame(m_buffer.data(), m_buffer.size(), frame, frameEnd, errorString);
521 failAsError(errorString);
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 190 CXString *errorString;
195 if (errorString)
196 *errorString = cxstring::createDup(err);
238 : error(e), errorString(es) {
241 if (errorString)
242 *errorString = cxstring::createEmpty();
651 CXString *errorString) {
652 DiagLoader L(error, errorString);
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 103 String errorString = String.format(
106 assertEquals(errorString, DownloadManager.STATUS_SUCCESSFUL, status);
  /external/skia/tools/
bench_pictures_main.cpp 312 SkString errorString;
313 SkAutoTUnref<sk_tools::PictureRenderer> renderer(parseRenderer(errorString,
316 if (errorString.size() > 0) {
317 gLogger.logError(errorString);
render_pictures_main.cpp 446 SkString errorString;
447 SkAutoTUnref<sk_tools::PictureRenderer> renderer(parseRenderer(errorString,
449 if (errorString.size() > 0) {
450 SkDebugf("%s\n", errorString.c_str());
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
ParserTest.java 125 final String errorString =
145 fail(errorString);
153 fail(errorString);
161 fail(errorString);
170 fail(errorString);
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateMaker.cpp 357 SkString errorString;
359 engine.getErrorString(&errorString);
361 setErrorNoun(errorString);
  /external/skia/src/animator/
SkAnimateMaker.cpp 357 SkString errorString;
359 engine.getErrorString(&errorString);
361 setErrorNoun(errorString);
  /external/chromium_org/third_party/WebKit/Source/web/resources/
colorSuggestionPicker.js 46 var errorString = validateArguments(args);
47 if (errorString) {
48 main.textContent = "Internal error: " + errorString;
  /external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
mathjax_external_util.js 405 * @param {string} errorString Name of the error object used by MathJax (e.g.,
414 callback, math, typeString, filterString, errorString, parseFunction) {
425 if (err[errorString]) {
432 typeString, filterString, errorString, parseFunction],
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 225 String errorString = "<" + tagName() + "> attribute " + name.toString() + "=\"" + value + "\"";
229 extensions->reportError("Invalid negative value for " + errorString);
234 extensions->reportError("Invalid value for " + errorString);
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 682 String errorString = db.error_string(Constants.SQLITE_ERROR);
691 .error_string(db.last_error()), errorString);
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h 371 static const char* errorString[ TIXML_ERROR_STRING_COUNT ];
    [all...]
tinyxmlparser.cpp 807 errorDesc = errorString[ errorId ];
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]

Completed in 1339 milliseconds

12 3