Searched refs:errorString (Results 1 - 25 of 116) sorted by relevance

12345

/macosx-10.9.5/xnu-2422.115.4/libkern/libkern/c++/
H A DOSUnserialize.h56 * @param errorString If non-</code>NULL</code>, and the XML parser
58 * <code>*errorString</code> indicates the line number
69 OSString ** errorString = 0);
82 * @param errorString If non-</code>NULL</code>, and the XML parser
84 * <code>*errorString</code> indicates the line number
96 OSString ** errorString = 0);
99 extern OSObject* OSUnserialize(const char *buffer, OSString **errorString = 0);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqwebloadrequest.cpp26 QWebLoadRequestPrivate(const QUrl& url, QQuickWebView::LoadStatus status, const QString& errorString, QQuickWebView::ErrorDomain errorDomain, int errorCode) argument
29 , errorString(errorString)
37 QString errorString; member in class:QWebLoadRequestPrivate
54 QWebLoadRequest::QWebLoadRequest(const QUrl& url, QQuickWebView::LoadStatus status, const QString& errorString, QQuickWebView::ErrorDomain errorDomain, int errorCode, QObject* parent) argument
56 , d(new QWebLoadRequestPrivate(url, status, errorString, errorDomain, errorCode))
93 \qmlproperty string WebLoadRequest::errorString
95 QString QWebLoadRequest::errorString() const function in class:QWebLoadRequest
97 return d->errorString;
H A Dqwebloadrequest_p.h34 Q_PROPERTY(QString errorString READ errorString)
39 QWebLoadRequest(const QUrl& url, QQuickWebView::LoadStatus status, const QString& errorString = QString(), QQuickWebView::ErrorDomain errorDomain = QQuickWebView::NoErrorDomain, int errorCode = 0, QObject* parent = 0);
43 QString errorString() const;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/qt/
H A DInjectedBundleQt.cpp41 qWarning("Error loading the injected bundle: %s", qPrintable(m_platformBundle.errorString()));
49 qWarning("Error resolving WKBundleInitialize: %s", qPrintable(m_platformBundle.errorString()));
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorCanvasAgent.cpp119 void InspectorCanvasAgent::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId) argument
121 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId);
123 module.dropTraceLog(errorString, traceLogId);
126 void InspectorCanvasAgent::hasUninstrumentedCanvases(ErrorString* errorString, bool* result) argument
128 if (!checkIsEnabled(errorString))
139 void InspectorCanvasAgent::captureFrame(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId) argument
141 Frame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
144 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, mainWorldScriptState(frame));
146 module.captureFrame(errorString, traceLogId);
149 void InspectorCanvasAgent::startCapturing(ErrorString* errorString, cons argument
159 stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId) argument
166 getTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, const int* startOffset, const int* maxLength, RefPtr<TraceLog>& traceLog) argument
173 replayTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, int stepNo, RefPtr<ResourceState>& result) argument
180 getResourceInfo(ErrorString* errorString, const ResourceId& resourceId, RefPtr<ResourceInfo>& result) argument
187 getResourceState(ErrorString* errorString, const TraceLogId& traceLogId, const ResourceId& resourceId, RefPtr<ResourceState>& result) argument
228 injectedScriptCanvasModule(ErrorString* errorString, ScriptState* scriptState) argument
240 injectedScriptCanvasModule(ErrorString* errorString, const ScriptObject& scriptObject) argument
252 injectedScriptCanvasModule(ErrorString* errorString, const String& objectId) argument
[all...]
H A DPageConsoleAgent.cpp60 void PageConsoleAgent::clearMessages(ErrorString* errorString) argument
63 InspectorConsoleAgent::clearMessages(errorString);
77 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId) argument
81 *errorString = "nodeId is not valid";
H A DInjectedScriptCanvasModule.cpp102 void InjectedScriptCanvasModule::captureFrame(ErrorString* errorString, TraceLogId* traceLogId) argument
104 callStartCapturingFunction("captureFrame", errorString, traceLogId);
107 void InjectedScriptCanvasModule::startCapturing(ErrorString* errorString, TraceLogId* traceLogId) argument
109 callStartCapturingFunction("startCapturing", errorString, traceLogId);
112 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId) argument
118 *errorString = "Internal error: " + functionName;
121 void InjectedScriptCanvasModule::stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId) argument
123 callVoidFunctionWithTraceLogIdArgument("stopCapturing", errorString, traceLogId);
126 void InjectedScriptCanvasModule::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId) argument
128 callVoidFunctionWithTraceLogIdArgument("dropTraceLog", errorString, traceLogI
131 callVoidFunctionWithTraceLogIdArgument(const String& functionName, ErrorString* errorString, const TraceLogId& traceLogId) argument
142 traceLog(ErrorString* errorString, const TraceLogId& traceLogId, const int* startOffset, const int* maxLength, RefPtr<TraceLog>* traceLog) argument
160 replayTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, int stepNo, RefPtr<ResourceState>* result) argument
175 resourceInfo(ErrorString* errorString, const ResourceId& resourceId, RefPtr<ResourceInfo>* result) argument
189 resourceState(ErrorString* errorString, const TraceLogId& traceLogId, const ResourceId& resourceId, RefPtr<ResourceState>* result) argument
[all...]
H A DInspectorDOMAgent.cpp382 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) argument
386 *errorString = "Could not find node with given id";
392 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) argument
394 Node* node = assertNode(errorString, nodeId);
399 *errorString = "Document is not available";
405 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) argument
407 Node* node = assertNode(errorString, nodeId);
412 *errorString = "Node is not an Element";
418 Node* InspectorDOMAgent::assertEditableNode(ErrorString* errorString, int nodeId) argument
420 Node* node = assertNode(errorString, nodeI
432 assertEditableElement(ErrorString* errorString, int nodeId) argument
445 getDocument(ErrorString* errorString, RefPtr<TypeBuilder::DOM::Node>& root) argument
499 pushNodeToFrontend(ErrorString* errorString, int documentNodeId, Node* nodeToPush) argument
523 requestChildNodes(ErrorString* errorString, int nodeId, const int* depth) argument
541 querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
559 querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) argument
649 releaseBackendNodeIds(ErrorString* errorString, const String& nodeGroup) argument
661 setAttributeValue(ErrorString* errorString, int elementId, const String& name, const String& value) argument
670 setAttributesAsText(ErrorString* errorString, int elementId, const String& text, const String* const name) argument
710 removeAttribute(ErrorString* errorString, int elementId, const String& name) argument
719 removeNode(ErrorString* errorString, int nodeId) argument
734 setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId) argument
769 getOuterHTML(ErrorString* errorString, int nodeId, WTF::String* outerHTML) argument
778 setOuterHTML(ErrorString* errorString, int nodeId, const String& outerHTML) argument
816 setNodeValue(ErrorString* errorString, int nodeId, const String& value) argument
827 m_domEditor->replaceWholeText(toText(node), value, errorString); local
830 getEventListenersForNode(ErrorString* errorString, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) argument
1021 getSearchResults(ErrorString* errorString, const String& searchId, int fromIndex, int toIndex, RefPtr<TypeBuilder::Array<int> >& nodeIds) argument
1118 setSearchingForNode(ErrorString* errorString, bool enabled, InspectorObject* highlightInspectorObject) argument
1131 highlightConfigFromInspectorObject(ErrorString* errorString, InspectorObject* highlightInspectorObject) argument
1153 setInspectModeEnabled(ErrorString* errorString, bool enabled, const RefPtr<InspectorObject>* highlightConfig) argument
1164 highlightQuad(ErrorString* errorString, const RefPtr<InspectorArray>& quadArray, const RefPtr<InspectorObject>* color, const RefPtr<InspectorObject>* outlineColor, const bool* usePageCoordinates) argument
1183 highlightNode(ErrorString* errorString, const RefPtr<InspectorObject>& highlightInspectorObject, const int* nodeId, const String* objectId) argument
1227 moveTo(ErrorString* errorString, int nodeId, int targetElementId, const int* const anchorNodeId, int* newNodeId) argument
1254 undo(ErrorString* errorString) argument
1261 redo(ErrorString* errorString) argument
1273 focus(ErrorString* errorString, int nodeId) argument
1285 setFileInputFiles(ErrorString* errorString, int nodeId, const RefPtr<InspectorArray>& files) argument
1313 resolveNode(ErrorString* errorString, int nodeId, const String* const objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
1329 getAttributes(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<String> >& result) argument
1797 pushNodeByPathToFrontend(ErrorString* errorString, const String& path, int* nodeId) argument
1805 pushNodeByBackendIdToFrontend(ErrorString* errorString, BackendNodeId backendNodeId, int* nodeId) argument
[all...]
H A DInjectedScript.cpp64 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) argument
72 makeEvalCall(errorString, function, result, wasThrown);
75 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) argument
83 makeEvalCall(errorString, function, result, wasThrown);
86 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) argument
96 makeEvalCall(errorString, function, result, wasThrown);
99 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<InspectorObject>* result) argument
108 resultValue->asString(errorString);
116 *errorString = "Internal error";
119 void InjectedScript::setVariableValue(ErrorString* errorString, cons argument
149 getFunctionDetails(ErrorString* errorString, const String& functionId, RefPtr<FunctionDetails>* result) argument
163 getProperties(ErrorString* errorString, const String& objectId, bool ownProperties, RefPtr<Array<PropertyDescriptor> >* properties) argument
178 getInternalProperties(ErrorString* errorString, const String& objectId, RefPtr<Array<InternalPropertyDescriptor> >* properties) argument
[all...]
H A DPageRuntimeAgent.cpp79 String errorString; local
80 disable(&errorString);
91 void PageRuntimeAgent::enable(ErrorString* errorString) argument
96 InspectorRuntimeAgent::enable(errorString);
105 void PageRuntimeAgent::disable(ErrorString* errorString) argument
110 InspectorRuntimeAgent::disable(errorString);
135 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId) argument
141 *errorString = "Internal error: main world execution context not found.";
146 *errorString = "Execution context with given id not found.";
H A DInspectorDOMStorageAgent.cpp103 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<InspectorObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items) argument
106 RefPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
108 if (errorString)
109 *errorString = "No StorageArea for given storageId";
128 void InspectorDOMStorageAgent::setDOMStorageItem(ErrorString* errorString, const RefPtr<InspectorObject>& storageId, const String& key, const String& value) argument
133 *errorString = "Storage not found";
140 *errorString = ExceptionCodeDescription(QUOTA_EXCEEDED_ERR).name;
143 void InspectorDOMStorageAgent::removeDOMStorageItem(ErrorString* errorString, const RefPtr<InspectorObject>& storageId, const String& key) argument
148 *errorString = "Storage not found";
191 PassRefPtr<StorageArea> InspectorDOMStorageAgent::findStorageArea(ErrorString* errorString, cons argument
[all...]
H A DInjectedScriptBase.cpp118 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown) argument
123 *errorString = "Internal error: result value is empty";
127 result->asString(errorString);
128 ASSERT(errorString->length());
133 *errorString = "Internal error: result is not an Object";
139 *errorString = "Internal error: result is not a pair of value and wasThrown flag";
H A DInspectorDebuggerAgent.cpp225 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const String* const optionalCondition, TypeBuilder::Debugger::BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations) argument
229 *errorString = "Either url or urlRegex must be specified.";
241 *errorString = "Breakpoint at specified location already exists.";
259 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* scriptId, int* lineNumber, int* columnNumber) argument
263 *errorString = "scriptId and lineNumber are required.";
271 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<InspectorObject>& location, const String* const optionalCondition, TypeBuilder::Debugger::BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Debugger::Location>& actualLocation) argument
277 if (!parseLocation(errorString, location, &scriptId, &lineNumber, &columnNumber))
284 *errorString = "Breakpoint at specified location already exists.";
292 *errorString = "Could not resolve breakpoint";
309 void InspectorDebuggerAgent::continueToLocation(ErrorString* errorString, cons argument
388 restartFrame(ErrorString* errorString, const String& callFrameId, RefPtr<Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<InspectorObject>& result) argument
410 getFunctionDetails(ErrorString* errorString, const String& functionId, RefPtr<TypeBuilder::Debugger::FunctionDetails>& details) argument
446 resume(ErrorString* errorString) argument
454 stepOver(ErrorString* errorString) argument
462 stepInto(ErrorString* errorString) argument
471 stepOut(ErrorString* errorString) argument
479 setPauseOnExceptions(ErrorString* errorString, const String& stringPauseState) argument
495 setPauseOnExceptionsImpl(ErrorString* errorString, int pauseState) argument
504 evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
528 compileScript(ErrorString* errorString, const String& expression, const String& sourceURL, TypeBuilder::OptOutput<ScriptId>* scriptId, TypeBuilder::OptOutput<String>* syntaxErrorMessage) argument
547 runScript(ErrorString* errorString, const ScriptId& scriptId, const int* executionContextId, const String* const objectGroup, const bool* const doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
586 setVariableValue(ErrorString* errorString, int scopeNumber, const String& variableName, const RefPtr<InspectorObject>& newValue, const String* callFrameId, const String* functionObjectId) argument
753 assertPaused(ErrorString* errorString) argument
[all...]
H A DInspectorLayerTreeAgent.cpp121 void InspectorLayerTreeAgent::layersForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) argument
127 *errorString = "Provided node id doesn't match any known node";
133 *errorString = "Node for provided node id doesn't have a renderer";
137 gatherLayersUsingRenderObjectHierarchy(errorString, renderer, layers);
140 void InspectorLayerTreeAgent::gatherLayersUsingRenderObjectHierarchy(ErrorString* errorString, RenderObject* renderer, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) argument
143 gatherLayersUsingRenderLayerHierarchy(errorString, toRenderLayerModelObject(renderer)->layer(), layers);
148 gatherLayersUsingRenderObjectHierarchy(errorString, renderer, layers);
151 void InspectorLayerTreeAgent::gatherLayersUsingRenderLayerHierarchy(ErrorString* errorString, RenderLayer* renderLayer, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) argument
154 layers->addItem(buildObjectForLayer(errorString, renderLayer));
157 gatherLayersUsingRenderLayerHierarchy(errorString, renderLaye
160 buildObjectForLayer(ErrorString* errorString, RenderLayer* renderLayer) argument
216 idForNode(ErrorString* errorString, Node* node) argument
239 reasonsForCompositingLayer(ErrorString* errorString, const String& layerId, RefPtr<TypeBuilder::LayerTree::CompositingReasons>& compositingReasons) argument
[all...]
H A DInspectorRuntimeAgent.cpp122 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
124 InjectedScript injectedScript = injectedScriptForEval(errorString, executionContextId);
135 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
145 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<InspectorArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
149 *errorString = "Inspected frame has gone";
164 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
174 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* const ownProperties, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) argument
178 *errorString = "Inspected frame has gone";
187 injectedScript.getProperties(errorString, objectId, ownProperties ? *ownProperties : false, &result);
188 injectedScript.getInternalProperties(errorString, objectI
[all...]
H A DPageDebuggerAgent.cpp99 InjectedScript PageDebuggerAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId) argument
107 *errorString = "Execution context with given id not found.";
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOCFSerializeTest.c133 CFStringRef errorString; local
177 properties0 = IOCFUnserialize(randomBuffer, kCFAllocatorDefault, 0, &errorString);
180 if (errorString) {
181 printf("random testing failed - errorString is set\n");
186 if (errorString) {
187 CFRelease(errorString);
189 printf("random testing failed - errorString is null\n");
205 properties1 = IOCFUnserialize(testBuffer, kCFAllocatorDefault, 0, &errorString);
207 CFIndex bufSize = CFStringGetMaximumSizeForEncoding(CFStringGetLength(errorString),
210 if (!buffer || !CFStringGetCString(errorString, buffe
[all...]
H A DIOCFUnserialize.h36 // on success IOCFUnserialize sets errorString to 0 and returns
39 // on failure IOCFUnserialize sets errorString to a CFString object
47 CFStringRef *errorString);
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Tool/
H A DSCSITargetProberUnixTool.c61 errorString, \
68 errorString, \
77 const char * errorString,
89 if ( errorString != NULL )
90 printf ( " %s\n", errorString );
74 DebugAssert( const char * componentNameString, const char * assertionString, const char * exceptionLabelString, const char * errorString, const char * fileName, long lineNumber, int errorCode ) argument
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/
H A DIOSCSIParallelFamilyDebugging.h46 const char * errorString,
57 const char * errorString,
69 errorString, \
76 errorString, \
/macosx-10.9.5/IOFireWireSerialBusProtocolTransport-251.0.1/
H A DIOFireWireSerialBusProtocolTransportDebugging.h71 const char * errorString,
79 errorString, \
86 errorString, \
/macosx-10.9.5/IOSCSIParallelFamily-300.0.2/TestTools/AppleSCSIHBAEmulator/
H A DDebugSupport.h70 const char * errorString,
83 errorString, \
90 errorString, \
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-multi-link/
H A Dmain.c68 NSLinkEditErrors c; int errorNumber; const char* fileName; const char* errorString; local
69 NSLinkEditError(&c, &errorNumber, &fileName, &errorString);
70 FAIL("2nd NSLinkModule failed: %s", errorString);
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-load.mm90 const char *fileName, *errorString;
91 NSLinkEditError(&error, &errorNum, &fileName, &errorString);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfpropertylist.py38 rval, errorString = CFPropertyListWriteToStream(value, stream,
42 self.failUnless(errorString is None)
60 res, format, errorString = CFPropertyListCreateFromStream(None, stream, 0, 0, None, None)
62 self.failUnless(errorString is None)

Completed in 155 milliseconds

12345