HomeSort by relevance Sort by last modified time
    Searched full:severity (Results 126 - 150 of 400) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastResources.java 53 // CMAS category, response type, severity, urgency, certainty
74 // CMAS severity
189 * Returns the string resource ID for the CMAS severity.
190 * @return a string resource ID, or 0 if the CMAS severity is unknown or not present
  /sdk/lint/cli/src/com/android/tools/lint/
HtmlReporter.java 30 import com.android.tools.lint.detector.api.Severity;
305 writeIssueMetadata(issue, first.severity, null);
323 private void writeIssueMetadata(Issue issue, Severity severity, String disabledBy)
350 mWriter.write("Severity: ");
351 if (severity == Severity.ERROR || severity == Severity.FATAL) {
353 } else if (severity == Severity.WARNING)
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
InefficientWeightDetector.java 34 import com.android.tools.lint.detector.api.Severity;
63 Severity.WARNING,
76 Severity.WARNING,
89 Severity.WARNING,
NamespaceDetector.java 31 import com.android.tools.lint.detector.api.Severity;
59 Severity.WARNING,
73 Severity.WARNING,
89 Severity.ERROR,
ChildCountDetector.java 31 import com.android.tools.lint.detector.api.Severity;
56 Severity.WARNING,
68 Severity.WARNING,
TooManyViewsDetector.java 25 import com.android.tools.lint.detector.api.Severity;
48 Severity.WARNING,
62 Severity.WARNING,
ProguardDetector.java 29 import com.android.tools.lint.detector.api.Severity;
53 Severity.FATAL,
90 Severity.WARNING,
  /external/chromium/base/
logging.cc 526 LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
528 : severity_(severity), file_(file), line_(line) {
537 LogMessage::LogMessage(const char* file, int line, LogSeverity severity)
538 : severity_(severity), file_(file), line_(line) {
549 LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
551 : severity_(severity), file_(file), line_(line) {
714 LogSeverity severity,
719 log_message_(file, line, severity) {
724 LogSeverity severity,
728 log_message_(file, line, severity) {
    [all...]
  /external/libvpx/nestegg/test/
test.c 41 log_callback(nestegg * ctx, unsigned int severity, char const * fmt, ...)
47 if (severity < NESTEGG_LOG_WARNING)
51 switch (severity) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 101 int severity = marker.getAttribute(IMarker.SEVERITY, 0); local
102 isError = severity == IMarker.SEVERITY_ERROR;
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintClient.java 36 import com.android.tools.lint.detector.api.Severity;
75 * to the severity of an issue, etc.
95 * @param severity the severity of the issue
108 @NonNull Severity severity,
114 * Send an exception or error message (with warning severity) to the log
125 log(Severity.WARNING, exception, format, args);
131 * @param severity the severity of the warnin
    [all...]
IssueRegistry.java 26 import com.android.tools.lint.detector.api.Severity;
60 Severity.ERROR,
81 Severity.ERROR,
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/
LintCliXmlParserTest.java 28 import com.android.tools.lint.detector.api.Severity;
157 public void report(Context context, Issue issue, Severity severity, Location location,
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/wizards/widget/
NewAndroidWidgetProjectMainPage.java 60 int severity = status.getSeverity();
61 setPageComplete(severity != IStatus.ERROR);
64 switch (severity)
  /frameworks/base/docs/html/tools/debugging/
improving-w-lint.jd 34 <p>The Android SDK provides a code scanning tool called {@code lint} that can help you to easily identify and correct problems with the structural quality of your code, without having to execute the app or write any test cases. Each problem detected by the tool is reported with a description message and a severity level, so that you can quickly prioritize the critical improvements that need to be made. You can also configure a problem's severity level to ignore issues that are not relevant for your project, or raise the severity level. The tool has a command-line interface, so you can easily integrate it into your automated testing process.</p>
43 <dd>A configuration file that you can use to specify any {@code lint} checks that you want to exclude and to customize problem severity levels.</dd>
96 <p>By default, when you run a {@code lint} scan, the tool checks for all issues that are supported by {@code lint}. You can also restrict the issues for {@code lint} to check and assign the severity level for those issues. For example, you can disable {@code lint} checking for specific issues that are not relevant to your project and configure {@code lint} to report non-critical issues at a lower severity level.</p>
138 <p>By setting the severity attribute value in the <code>&lt;issue&gt;</code> tag, you can disable {@code lint} checking for an issue or change the severity level for an issue. </p>
147 &lt;issue id="IconMissingDensityFolder" severity="ignore" /&gt;
160 &lt;!-- Change the severity of hardcoded strings to "error" --&gt
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 191 * @param severity the severity of the marker.
195 protected final IMarker markProject(String markerId, String message, int severity) {
196 return BaseProjectHelper.markResource(getProject(), markerId, message, severity);
336 int severity = marker.getAttribute(IMarker.SEVERITY, -1 /*defaultValue*/); local
337 if (severity == IMarker.SEVERITY_ERROR) {
  /sdk/manifmerger/src/com/android/manifmerger/
ManifestMerger.java 23 import com.android.manifmerger.IMergerLog.Severity;
378 mLog.error(Severity.WARNING,
449 mLog.conflict(Severity.WARNING,
496 mLog.conflict(Severity.WARNING,
537 mLog.error(Severity.ERROR,
549 mLog.error(Severity.ERROR,
561 mLog.error(Severity.WARNING,
572 mLog.conflict(Severity.INFO,
581 mLog.conflict(Severity.ERROR,
648 mLog.error(Severity.ERROR
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 50 import com.android.tools.lint.detector.api.Severity;
193 public void log(@NonNull Severity severity, @Nullable Throwable exception,
310 public void report(@NonNull Context context, @NonNull Issue issue, @NonNull Severity s,
313 int severity = getMarkerSeverity(s); local
322 message, 0, severity);
335 message, line, startOffset, endOffset, severity);
342 message, 0, severity);
354 if (s == Severity.FATAL) {
373 int prevSeverity = prev.getAttribute(IMarker.SEVERITY, 0)
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-util-unix.c 380 * @param severity a severity value
386 _dbus_system_log (DBusSystemLogSeverity severity, const char *msg, ...)
392 _dbus_system_logv (severity, msg, args);
400 * @param severity a severity value
404 * If the FATAL severity is given, this function will terminate the program
408 _dbus_system_logv (DBusSystemLogSeverity severity, const char *msg, va_list args)
411 switch (severity)
427 if (severity == DBUS_SYSTEM_LOG_FATAL
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/bin/
i686-linux-gccbug 156 USAGE="Usage: $COMMAND [-PVL] [-t address] [-f filename] [-s severity]
182 -s | --severity) if [ $# -eq 1 ]; then echo "$USAGE"; $REMOVE_TEMP; exit 1; fi
322 >Severity: $SEVERITY_C
419 # 2) Severity
421 PATTERN=">Severity:"
422 SEVERITY=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
423 case "$SEVERITY" in
425 *) echo "$COMMAND: \`$SEVERITY' is not a valid value for \`Severity'."
536 /^>Severity:/s;<.*>;
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/validation/
ValidationManager.java 64 import com.motorolamobility.preflighting.core.validation.ValidationResultData.SEVERITY;
329 resultData.setSeverity(SEVERITY.ERROR);
354 resultData.setSeverity(SEVERITY.ERROR);
402 resultData.setSeverity(SEVERITY.ERROR);
409 resultData.setSeverity(SEVERITY.ERROR);
431 resultData.setSeverity(SEVERITY.OK);
435 resultData.setSeverity(SEVERITY.OK);
441 resultData.setSeverity(SEVERITY.WARNING);
445 resultData.setSeverity(SEVERITY.ERROR);
453 resultData.setSeverity(SEVERITY.ERROR);
    [all...]
  /packages/apps/CellBroadcastReceiver/res/values/
strings.xml 187 <!-- CMAS severity heading (including colon). [CHAR LIMIT=30] -->
188 <string name="cmas_severity_heading">Severity:</string>
189 <!-- CMAS severity type: extreme. [CHAR LIMIT=30] -->
191 <!-- CMAS severity type: severe. [CHAR LIMIT=30] -->
198 <!-- CMAS severity type: severe. [CHAR LIMIT=30] -->
205 <!-- CMAS severity type: severe. [CHAR LIMIT=30] -->
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/wizards/
SignExternalPackagePage.java 520 int severity = getMessageType(); local
521 String messageAux = severity == IMessageProvider.NONE ? null : getMessage();
535 severity = IMessageProvider.ERROR;
543 severity = IMessageProvider.NONE;
546 setMessage(messageAux, severity);
547 setPageComplete(severity == IMessageProvider.NONE);
  /external/libxml2/include/libxml/
xmlreader.h 390 * @severity: the severity of the error
397 xmlParserSeverities severity,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/uimodel/
UiViewElementNode.java 173 int severity = marker.getAttribute(IMarker.SEVERITY, 0); local
174 if (severity == IMarker.SEVERITY_ERROR) {

Completed in 855 milliseconds

1 2 3 4 56 7 8 91011>>