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

1 2 3

  /external/tinyxml/
tinyxmlerror.cpp 34 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] =
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxmlerror.cpp 34 const char* TiXmlBase::errorString[ TiXmlBase::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 97 ErrorString error;
102 void InspectorCanvasAgent::enable(ErrorString*)
112 void InspectorCanvasAgent::disable(ErrorString*)
122 void InspectorCanvasAgent::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId)
124 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId);
126 module.dropTraceLog(errorString, traceLogId);
129 void InspectorCanvasAgent::hasUninstrumentedCanvases(ErrorString* errorString, bool* result)
131 if (!checkIsEnabled(errorString))
    [all...]
InjectedScriptCanvasModule.cpp 97 void InjectedScriptCanvasModule::captureFrame(ErrorString* errorString, TraceLogId* traceLogId)
99 callStartCapturingFunction("captureFrame", errorString, traceLogId);
102 void InjectedScriptCanvasModule::startCapturing(ErrorString* errorString, TraceLogId* traceLogId)
104 callStartCapturingFunction("startCapturing", errorString, traceLogId);
107 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId)
113 *errorString = "Internal error: " + functionName;
116 void InjectedScriptCanvasModule::stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId
    [all...]
InspectorDOMStorageAgent.cpp 55 static bool hadException(ExceptionState& exceptionState, ErrorString* errorString)
62 *errorString = "Security error";
65 *errorString = "Unknown DOM storage error";
109 void InspectorDOMStorageAgent::enable(ErrorString*)
115 void InspectorDOMStorageAgent::disable(ErrorString*)
121 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items)
124 OwnPtrWillBeRawPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
133 if (hadException(exceptionState, errorString))
    [all...]
PageConsoleAgent.cpp 66 void PageConsoleAgent::clearMessages(ErrorString* errorString)
69 InspectorConsoleAgent::clearMessages(errorString);
88 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId)
92 *errorString = "nodeId is not valid";
InjectedScript.cpp 61 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, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails)
69 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
72 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)
80 makeEvalCall(errorString, function, result, wasThrown);
83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const Vector<ScriptValue>& asyncCallStacks, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails)
94 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
97 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result
    [all...]
InspectorRuntimeAgent.cpp 78 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, RefPtr<TypeBuilder::Debugger::ExceptionDetails>& exceptionDetails)
80 InjectedScript injectedScript = injectedScriptForEval(errorString, executionContextId);
89 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown, &exceptionDetails);
97 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)
101 *errorString = "Inspected frame has gone";
114 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
122 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<Typ (…)
    [all...]
InspectorDOMAgent.cpp 278 ErrorString error;
407 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId)
411 *errorString = "Could not find node with given id";
417 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId)
419 Node* node = assertNode(errorString, nodeId);
424 *errorString = "Document is not available";
430 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId
    [all...]
InspectorDebuggerAgent.cpp 190 void InspectorDebuggerAgent::enable(ErrorString*)
201 void InspectorDebuggerAgent::disable(ErrorString*)
260 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active)
265 void InspectorDebuggerAgent::setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload)
333 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, BreakpointId* outBreakpointId, RefPtr<Array<TypeBuilder::Debugger::Location> >& locations)
337 *errorString = "Either url or urlRegex must be specified.";
348 *errorString = "Incorrect column number";
360 *errorString = "Breakpoint at specified location already exists.";
380 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumbe (…)
    [all...]
PageRuntimeAgent.cpp 77 void PageRuntimeAgent::enable(ErrorString* errorString)
82 InspectorRuntimeAgent::enable(errorString);
91 void PageRuntimeAgent::run(ErrorString* errorString)
121 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId)
127 *errorString = "Internal error: main world execution context not found.";
132 *errorString = "Execution context with given id not found.";
InspectorLayerTreeAgent.cpp 179 void InspectorLayerTreeAgent::enable(ErrorString*)
189 void InspectorLayerTreeAgent::disable(ErrorString*)
193 ErrorString unused;
286 GraphicsLayer* InspectorLayerTreeAgent::layerById(ErrorString* errorString, const String& layerId)
291 *errorString = "Invalid layer id";
296 *errorString = "Not in compositing mode";
302 *errorString = "No layer matching given id found";
306 void InspectorLayerTreeAgent::compositingReasons(ErrorString* errorString, const String& layerId, RefPtr<TypeBuilder::Array<String> >& reasonStrings
    [all...]
WorkerRuntimeAgent.cpp 69 void WorkerRuntimeAgent::enable(ErrorString* errorString)
74 InspectorRuntimeAgent::enable(errorString);
78 InjectedScript WorkerRuntimeAgent::injectedScriptForEval(ErrorString* error, const int* executionContextId)
99 void WorkerRuntimeAgent::run(ErrorString*)
104 void WorkerRuntimeAgent::isRunRequired(ErrorString*, bool* out_result)
InspectorCSSAgent.cpp 412 ErrorString error;
456 void InspectorCSSAgent::enable(ErrorString*, PassRefPtrWillBeRawPtr<EnableCallback> prpCallback)
480 void InspectorCSSAgent::disable(ErrorString*)
636 void InspectorCSSAgent::getMediaQueries(ErrorString* errorString, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> >& medias)
651 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* excludePseudo, const bool* excludeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries)
653 Element* element = elementForId(errorString, nodeId);
655 *errorString = "Node not found";
664 *errorString = "Pseudo element has no parent"
    [all...]
InspectorApplicationCacheAgent.cpp 65 ErrorString error;
70 void InspectorApplicationCacheAgent::enable(ErrorString*)
98 void InspectorApplicationCacheAgent::getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest> >& result)
123 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId)
125 LocalFrame* 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...]
InspectorProfilerAgent.cpp 148 void InspectorProfilerAgent::enable(ErrorString*)
159 void InspectorProfilerAgent::disable(ErrorString*)
175 void InspectorProfilerAgent::setSamplingInterval(ErrorString* error, int interval)
193 ErrorString error;
205 ErrorString error;
210 void InspectorProfilerAgent::start(ErrorString* error)
226 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>& profile)
228 stop(errorString, &profile);
231 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>* profile
    [all...]
  /cts/hostsidetests/security/src/android/cts/security/
SELinuxHostTest.java 100 StringBuilder errorString = new StringBuilder();
102 errorString.append(line);
103 errorString.append("\n");
106 + errorString, errorString.length() == 0);
  /hardware/ti/omap4-aah/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...]
  /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...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
Utils.java 58 * @param errorString
61 public static final void showErrorDialog(Context context, String errorString) {
63 .setMessage(errorString)
  /external/compiler-rt/test/BlocksRuntime/
testfilerunner.h 95 __strong char *errorString;
103 @property __strong char *errorString;
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
Gles2ColoredTriangleList.java 142 String errorString = GLU.gluErrorString(error);
143 if (errorString == null) {
144 errorString = GLUtils.getEGLErrorString(error);
147 ": " + errorString;
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
Gles2ColoredTriangleList.java 142 String errorString = GLU.gluErrorString(error);
143 if (errorString == null) {
144 errorString = GLUtils.getEGLErrorString(error);
147 ": " + errorString;

Completed in 1085 milliseconds

1 2 3