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

1 2 3 4 5 6 7 8 91011>>

  /device/google/contexthub/firmware/
symcheck.sh 36 explanation=$(echo "$var" | sed 's/\([^=]*\)=/ /g')
38 explanation=""
41 explanation="Forbidden function '$look_for' found. This is a build error.$explanation"
46 echo $explanation >&2
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ResultException.java 57 public ResultException(ResultCode result, String explanation) {
59 mExplanation = explanation;
73 public ResultException(ResultCode result, int additionalInfo, String explanation) {
75 mExplanation = explanation;
90 public String explanation() { method in class:ResultException
BerTlv.java 120 throw new ResultException(ResultCode.CMD_DATA_NOT_UNDERSTOOD, e.explanation());
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternDemo.java 32 StringBuilder explanation=new StringBuilder(); local
36 explanation.delete(0, 0x7fffffff);
45 explanation.append("=\"").append(msg.getSubstring(part)).append('"');
48 explanation.append('=').append(msg.getNumericValue(part));
50 System.out.format("%2d: %s%s%s\n", i, indent, partString, explanation);
  /external/ltp/testcases/kernel/syscalls/syslog/
syslog07 47 explanation="Higher"
49 explanation="All"
53 tst_resm TINFO " $explanation level messages are logged."
  /frameworks/base/core/java/android/service/notification/
Adjustment.java 59 * @param explanation A human-readable justification for the adjustment.
61 public Adjustment(String pkg, String key, Bundle signals, CharSequence explanation, int user) {
65 mExplanation = explanation;
NotificationRankingUpdate.java 41 int[] importance, Bundle explanation, Bundle overrideGroupKeys,
49 mImportanceExplanation = explanation;
SnoozeCriterion.java 35 public SnoozeCriterion(String id, CharSequence explanation, CharSequence confirmation) {
37 mExplanation = explanation;
67 * Returns the user visible explanation of how long a notification will be snoozed if
  /prebuilts/go/darwin-x86/misc/cgo/stdio/
file.go 9 For a more complex example and explanation,
  /prebuilts/go/linux-x86/misc/cgo/stdio/
file.go 9 For a more complex example and explanation,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.director_2.0.3.R36x_v20101117-1018.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.director_2.3.1.v20140221-1852.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.director_2.3.0.v20130526-0335.jar 
  /external/testng/src/main/java/org/testng/
Assert.java 565 String explanation = "Lists differ at element [" + i + "]: " + e + " != " + a; local
566 String errorMessage = message == null ? explanation : message + ": " + explanation;
608 String explanation = "Iterators differ at element [" + i + "]: " + e + " != " + a; local
609 String errorMessage = message == null ? explanation : message + ": " + explanation;
617 String explanation = "Actual iterator returned more elements than the expected iterator."; local
618 String errorMessage = message == null ? explanation : message + ": " + explanation;
623 String explanation = "Expected iterator returned more elements than the actual iterator." local
    [all...]
  /frameworks/base/services/tests/notification/src/com/android/server/notification/
NotificationListenerServiceTest.java 71 Bundle explanation = new Bundle(); local
87 explanation.putString(key, getExplanation(key));
95 suppressedVisualEffects, importance, explanation, overrideGroupKeys,
  /prebuilts/go/darwin-x86/src/internal/testenv/
testenv.go 49 // If not, MustHaveGoBuild calls t.Skip with an explanation.
63 // If not, MustHaveGoRun calls t.Skip with an explanation.
119 // If not, MustHaveExec calls t.Skip with an explanation.
134 // If not, MustHaveExternalNetwork calls t.Skip with an explanation.
148 // If not, MustHaveSymlink calls t.Skip with an explanation.
165 // If not, MustHaveLink calls t.Skip with an explanation.
  /prebuilts/go/linux-x86/src/internal/testenv/
testenv.go 49 // If not, MustHaveGoBuild calls t.Skip with an explanation.
63 // If not, MustHaveGoRun calls t.Skip with an explanation.
119 // If not, MustHaveExec calls t.Skip with an explanation.
134 // If not, MustHaveExternalNetwork calls t.Skip with an explanation.
148 // If not, MustHaveSymlink calls t.Skip with an explanation.
165 // If not, MustHaveLink calls t.Skip with an explanation.
  /frameworks/rs/script_api/
rs_for_each.spec 265 by the supplied kernel context. See @rsGetArray0() for an explanation of the context.
278 as specified by the supplied kernel context. See @rsGetArray0() for an explanation
292 by the supplied kernel context. See @rsGetArray0() for an explanation of the context.
305 See @rsGetDimX() for an explanation of the context.
320 See @rsGetDimX() for an explanation of the context.
333 See @rsGetDimX() for an explanation of the context.
346 See @rsGetDimX() for an explanation of the context.
360 explanation of the context.
373 for mipmaps. See @rsGetDimX() for an explanation of the context.
409 See @rsGetDimX() for an explanation of the context
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/errorprone/error_prone_annotation/2.0.18/
error_prone_annotation-2.0.18.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 86 String explanation = "CHANGES:\n-------\n" + describe(change); local
87 if (!expected.trim().equals(explanation.trim())) { // allow trimming endlines in expected
88 assertEquals(expected, explanation);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 490 sb.append("Issue Explanation:");
492 String explanation = issue.getExplanation(TextFormat.TEXT); local
493 if (explanation != null && !explanation.isEmpty()) {
495 sb.append(explanation);
  /external/proguard/src/proguard/gui/
FilterDialog.java 70 String explanation)
119 // Create the panel with the explanation.
120 JTextArea explanationTextArea = new JTextArea(explanation, 3, 0);
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.5.3/
lint-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.7.0/
lint-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.7.1/
lint-22.7.1.jar 

Completed in 817 milliseconds

1 2 3 4 5 6 7 8 91011>>