HomeSort by relevance Sort by last modified time
    Searched refs:errorString (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/tinyxml/
tinyxmlerror.cpp 34 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] =
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlerror.cpp 34 const char* TiXmlBase::errorString[ TiXmlBase::TIXML_ERROR_STRING_COUNT ] =
  /frameworks/base/opengl/java/android/opengl/
GLException.java 36 String errorString = GLU.gluErrorString(error);
37 if ( errorString == null ) {
38 errorString = "Unknown error 0x" + Integer.toHexString(error);
40 return errorString;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCanvasAgent.cpp 93 ErrorString error;
98 void InspectorCanvasAgent::enable(ErrorString*)
108 void InspectorCanvasAgent::disable(ErrorString*)
118 void InspectorCanvasAgent::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId)
120 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId);
122 module.dropTraceLog(errorString, traceLogId);
125 void InspectorCanvasAgent::hasUninstrumentedCanvases(ErrorString* errorString, bool* result)
127 if (!checkIsEnabled(errorString))
    [all...]
InjectedScriptCanvasModule.cpp 95 void InjectedScriptCanvasModule::captureFrame(ErrorString* errorString, TraceLogId* traceLogId)
97 callStartCapturingFunction("captureFrame", errorString, traceLogId);
100 void InjectedScriptCanvasModule::startCapturing(ErrorString* errorString, TraceLogId* traceLogId)
102 callStartCapturingFunction("startCapturing", errorString, traceLogId);
105 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId)
111 *errorString = "Internal error: " + functionName;
114 void InjectedScriptCanvasModule::stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId
    [all...]
InspectorDOMStorageAgent.cpp 57 static bool hadException(ExceptionState& es, ErrorString* errorString)
64 *errorString = "Security error";
67 *errorString = "Unknown DOM storage error";
99 void InspectorDOMStorageAgent::enable(ErrorString*)
105 void InspectorDOMStorageAgent::disable(ErrorString*)
111 void InspectorDOMStorageAgent::getValue(ErrorString* errorString, const RefPtr<JSONObject>& storageId, const String& key, TypeBuilder::OptOutput<WTF::String>* value)
114 OwnPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
120 if (hadException(es, errorString) || !keyPresent
    [all...]
InspectorLayerTreeAgent.cpp 111 void InspectorLayerTreeAgent::enable(ErrorString*)
117 void InspectorLayerTreeAgent::disable(ErrorString*)
136 void InspectorLayerTreeAgent::getLayers(ErrorString* errorString, const int* nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers)
143 *errorString = "Not in compositing mode";
147 gatherLayersUsingRenderLayerHierarchy(errorString, compositor->rootRenderLayer(), layers);
152 *errorString = "Provided node id doesn't match any known node";
157 *errorString = "Node for provided node id doesn't have a renderer";
160 gatherLayersUsingRenderObjectHierarchy(errorString, renderer, layers);
163 void InspectorLayerTreeAgent::addRenderLayerBacking(ErrorString* errorString, RenderLayerBacking* layerBacking, Node* node, RefPtr<TypeBuilder::Array<TypeBuilder: (…)
    [all...]
PageConsoleAgent.cpp 53 void PageConsoleAgent::clearMessages(ErrorString* errorString)
56 InspectorConsoleAgent::clearMessages(errorString);
70 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId)
74 *errorString = "nodeId is not valid";
InspectorRuntimeAgent.cpp 69 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)
71 InjectedScript injectedScript = injectedScriptForEval(errorString, executionContextId);
80 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
88 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<JSONArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
92 *errorString = "Inspected frame has gone";
105 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
113 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<Typ (…)
    [all...]
InspectorDebuggerAgent.cpp 146 void InspectorDebuggerAgent::enable(ErrorString*)
157 void InspectorDebuggerAgent::disable(ErrorString*)
208 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active)
261 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const String* const optionalCondition, const bool* isAntiBreakpoint, TypeBuilder::Debugger::BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations)
265 *errorString = "Either url or urlRegex must be specified.";
276 *errorString = "Incorrect column number";
288 *errorString = "Breakpoint at specified location already exists.";
308 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumber
    [all...]
InspectorDOMAgent.cpp 268 ErrorString error;
379 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId)
383 *errorString = "Could not find node with given id";
389 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId)
391 Node* node = assertNode(errorString, nodeId);
396 *errorString = "Document is not available";
402 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId
    [all...]
PageRuntimeAgent.cpp 77 String errorString;
78 disable(&errorString);
89 void PageRuntimeAgent::enable(ErrorString* errorString)
94 InspectorRuntimeAgent::enable(errorString);
103 void PageRuntimeAgent::disable(ErrorString* errorString)
108 InspectorRuntimeAgent::disable(errorString);
136 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId
    [all...]
InjectedScriptBase.cpp 117 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown)
122 *errorString = "Internal error: result value is empty";
126 result->asString(errorString);
127 ASSERT(errorString->length());
132 *errorString = "Internal error: result is not an Object";
138 *errorString = "Internal error: result is not a pair of value and wasThrown flag";
InjectedScript.cpp 60 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)
68 makeEvalCall(errorString, function, result, wasThrown);
71 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)
79 makeEvalCall(errorString, function, result, wasThrown);
82 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)
92 makeEvalCall(errorString, function, result, wasThrown);
95 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result
    [all...]
InspectorProfilerAgent.cpp 119 void InspectorProfilerAgent::enable(ErrorString*)
125 void InspectorProfilerAgent::disable(ErrorString*)
145 void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader> >& headers)
155 void InspectorProfilerAgent::getCPUProfile(ErrorString* errorString, int rawUid, RefPtr<TypeBuilder::Profiler::CPUProfile>& profileObject)
160 *errorString = "Profile wasn't found";
171 void InspectorProfilerAgent::removeProfile(ErrorString*, const String& type, int rawUid)
180 void InspectorProfilerAgent::clearProfiles(ErrorString*)
209 ErrorString error;
220 void InspectorProfilerAgent::start(ErrorString*)
    [all...]
DOMEditor.cpp 405 static void populateErrorString(ExceptionState& es, ErrorString* errorString)
408 *errorString = DOMException::getErrorName(es.code());
411 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtr<Node> node, Node* anchorNode, ErrorString* errorString)
415 populateErrorString(es, errorString);
419 bool DOMEditor::removeChild(Node* parentNode, Node* node, ErrorString* errorString)
423 populateErrorString(es, errorString);
427 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ErrorString* errorString
    [all...]
InspectorCSSAgent.cpp 759 ErrorString error;
783 void InspectorCSSAgent::enable(ErrorString*)
796 void InspectorCSSAgent::disable(ErrorString*)
822 ErrorString errorString;
823 m_frontend->namedFlowCreated(buildObjectForNamedFlow(&errorString, namedFlow, documentNodeId));
854 ErrorString errorString;
857 m_frontend->regionLayoutUpdated(buildObjectForNamedFlow(&errorString, namedFlow, documentNodeId));
876 ErrorString errorString
    [all...]
InspectorApplicationCacheAgent.cpp 66 ErrorString error;
71 void InspectorApplicationCacheAgent::enable(ErrorString*)
100 void InspectorApplicationCacheAgent::getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest> >& result)
123 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId)
125 Frame* frame = m_pageAgent->assertFrame(errorString, frameId);
129 return InspectorPageAgent::assertDocumentLoader(errorString, frame);
132 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL)
134 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId)
    [all...]
InspectorHeapProfilerAgent.cpp 78 void InspectorHeapProfilerAgent::clearProfiles(ErrorString*)
114 void InspectorHeapProfilerAgent::collectGarbage(WebCore::ErrorString*)
164 void InspectorHeapProfilerAgent::startTrackingHeapObjects(ErrorString*)
192 void InspectorHeapProfilerAgent::stopTrackingHeapObjects(ErrorString*)
201 void InspectorHeapProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::HeapProfiler::ProfileHeader> >& headers)
211 void InspectorHeapProfilerAgent::getHeapSnapshot(ErrorString* errorString, int rawUid)
227 *errorString = "Profile wasn't found";
237 void InspectorHeapProfilerAgent::removeProfile(ErrorString*, int rawUid)
244 void InspectorHeapProfilerAgent::takeHeapSnapshot(ErrorString*, const bool* reportProgress
    [all...]
InspectorIndexedDBAgent.cpp 570 ErrorString error;
575 void InspectorIndexedDBAgent::enable(ErrorString*)
580 void InspectorIndexedDBAgent::disable(ErrorString*)
585 static Document* assertDocument(ErrorString* errorString, Frame* frame)
590 *errorString = "No document for given frame found";
595 static IDBFactory* assertIDBFactory(ErrorString* errorString, Document* document)
599 *errorString = "No IndexedDB factory for given frame found";
605 *errorString = "No IndexedDB factory for given frame found"
    [all...]
  /hardware/ti/omap4xxx/domx/test/sample_proxy/
test_sample_proxy.c 248 OMX_STRING errorString;
254 errorString = "ErrorNone";
257 errorString = "ErrorInsufficientResources";
260 errorString = "ErrorUndefined";
263 errorString = "ErrorInvalidComponentName";
266 errorString = "ErrorComponentNotFound";
269 errorString = "ErrorInvalidComponent";
272 errorString = "ErrorBadParameter";
275 errorString = "ErrorNotImplemented";
278 errorString = "ErrorUnderflow"
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
testfilerunner.h 95 __strong char *errorString;
103 @property __strong char *errorString;
  /external/chromium_org/third_party/WebKit/public/web/
WebSharedWorkerClient.h 56 const WebString& errorString, int lineNumber,
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 59 _TCHAR errorString[32];
60 _stprintf(errorString, _T("0x%04x"), error);
61 MessageBox(NULL, errorString, _T("GL Error"), MB_OK);
71 _TCHAR errorString[32];
72 _stprintf(errorString, _T("0x%04x"), error);
73 MessageBox(NULL, errorString, _T("EGL Initialization Error"), MB_OK);
  /packages/apps/Mms/src/com/android/mms/transaction/
RetryScheduler.java 134 int errorString = 0;
139 errorString = R.string.invalid_destination;
143 errorString = R.string.service_not_activated;
146 errorString = R.string.service_network_problem;
150 errorString = R.string.service_message_not_found;
153 if (errorString != 0) {
154 DownloadManager.getInstance().showErrorCodeToast(errorString);

Completed in 812 milliseconds

1 2 3