Home
last modified time | relevance | path

Searched refs:throwable (Results 1 – 5 of 5) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DRenderLogger.java141 public void error(String tag, String message, Throwable throwable, Object data) { in error() argument
143 appendToIdeLog(throwable, IStatus.ERROR, description); in error()
145 if (throwable != null) { in error()
146 if (throwable instanceof ClassNotFoundException) { in error()
157 if (description.equals(throwable.getLocalizedMessage()) || in error()
158 description.equals(throwable.getMessage())) { in error()
161 recordThrowable(throwable); in error()
173 public void recordThrowable(@NonNull Throwable throwable) { in recordThrowable() argument
177 mTraces.add(throwable); in recordThrowable()
201 public void fidelityWarning(String tag, String message, Throwable throwable, Object data) { in fidelityWarning() argument
[all …]
DGraphicalEditorPart.java1855 Throwable throwable = throwables.get(0); in displayUserStackTrace() local
1857 if (throwable instanceof RenderSecurityException) { in displayUserStackTrace()
1882 if (throwable.getMessage().equals("Unable to create temporary file")) { in displayUserStackTrace()
1900 StackTraceElement[] frames = throwable.getStackTrace(); in displayUserStackTrace()
1927 addText(mErrorLabel, throwable.toString() + '\n'); in displayUserStackTrace()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
DAndroidTargetData.java334 public void error(String tag, String message, Throwable throwable, in getLayoutLibrary()
336 AdtPlugin.log(throwable, message); in getLayoutLibrary()
DSdk.java247 public void error(@Nullable Throwable throwable, @Nullable String errorFormat, in loadSdk()
254 if (throwable != null) { in loadSdk()
255 logMessages.add(throwable.getMessage()); in loadSdk()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
DPreCompilerBuilder.java816 } catch (Throwable throwable) { in startupOnInitialize()
817 AdtPlugin.log(throwable, "Failed to finish PrecompilerBuilder#startupOnInitialize()"); in startupOnInitialize()