Home
last modified time | relevance | path

Searched refs:explanation (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/external/archive-patcher/explainer/src/main/java/com/google/archivepatcher/explainer/
DPatchExplanation.java94 for (EntryExplanation explanation : entryExplanations) { in PatchExplanation()
95 if (explanation.isNew()) { in PatchExplanation()
96 tempEstimatedNewSize += explanation.getCompressedSizeInPatch(); in PatchExplanation()
97 tempExplainedAsNew.add(explanation); in PatchExplanation()
98 } else if (explanation.getReasonIncludedIfNotNew() in PatchExplanation()
100 tempEstimatedResourceConstrainedSize += explanation.getCompressedSizeInPatch(); in PatchExplanation()
101 tempExplainedAsResourceConstrained.add(explanation); in PatchExplanation()
102 } else if (explanation.getCompressedSizeInPatch() > 0) { in PatchExplanation()
103 tempEstimatedChangedSize += explanation.getCompressedSizeInPatch(); in PatchExplanation()
104 tempExplainedAsChanged.add(explanation); in PatchExplanation()
[all …]
/external/cldr/tools/java/org/unicode/cldr/tool/
DFormattedFileWriter.java47 String explanation = item[2]; in toString() local
51 contents.append("\t<div class='chit'>" + explanation + "</div>" + Chart.LS); in toString()
83 public void add(String title, String fileName, String explanation) { in add() argument
84 anchors.add(new String[] { title, fileName, explanation }); in add()
85 if (explanation != null) { in add()
101 private String explanation; field in FormattedFileWriter
106 … public FormattedFileWriter(String baseFileName, String title, String explanation, Anchors anchors) in FormattedFileWriter() argument
115 this.explanation = explanation; in FormattedFileWriter()
142 if (explanation == null) { in close()
143 explanation = HelpMessages.getChartMessages(filename); in close()
[all …]
DGenerateChangeChart.java166 … public LocaleFirstChartWriter(PrintWriter summary, String dir, String title, String explanation) { in LocaleFirstChartWriter() argument
167 super(summary, dir, title, explanation); in LocaleFirstChartWriter()
224 … public PathFirstChartWriter(PrintWriter summary, String dir, String title, String explanation) { in PathFirstChartWriter() argument
225 super(summary, dir, title, explanation); in PathFirstChartWriter()
282 public ChartWriter(PrintWriter summary, String dir, String title, String explanation) { in ChartWriter() argument
284 out = new FormattedFileWriter(summary, dir, title.toString(), explanation, null); in ChartWriter()
314 …ttedFileWriter(PrintWriter indexFile, String dir, String title, String explanation, List<String> a… in FormattedFileWriter() argument
328 if (explanation != null) { in FormattedFileWriter()
329 out.write(explanation); in FormattedFileWriter()
/external/libmtp/logs/
Dmtp-detect-philips-sa5145.txt150 Error 2: (Look this up in ptp.h for an explanation.)
182 Error 2: (Look this up in ptp.h for an explanation.)
184 Error 2: (Look this up in ptp.h for an explanation.)
186 Error 2: (Look this up in ptp.h for an explanation.)
188 Error 2: (Look this up in ptp.h for an explanation.)
190 Error 2: (Look this up in ptp.h for an explanation.)
192 Error 2: (Look this up in ptp.h for an explanation.)
194 Error 2: (Look this up in ptp.h for an explanation.)
196 Error 2: (Look this up in ptp.h for an explanation.)
198 Error 2: (Look this up in ptp.h for an explanation.)
[all …]
Dmtp-detect-nokia-5800.txt4 Error 2: (Look this up in ptp.h for an explanation.)
6 Error 2: (Look this up in ptp.h for an explanation.)
8 Error 2: (Look this up in ptp.h for an explanation.)
145 Error 2: (Look this up in ptp.h for an explanation.)
Dmtp-detect-samsung-gt-s5230w.txt11 Error 2: (Look this up in ptp.h for an explanation.)
13 Error 2: (Look this up in ptp.h for an explanation.)
135 Error 2: (Look this up in ptp.h for an explanation.)
Dmtp-detect-toshiba-gigabeat-v30.txt7 Error 2: (Look this up in ptp.h for an explanation.)
9 Error 2: (Look this up in ptp.h for an explanation.)
137 Error 2: (Look this up in ptp.h for an explanation.)
Dmtp-detect-sony-xperia-sx.txt13 Error 2: (Look this up in ptp.h for an explanation.)
15 Error 2: (Look this up in ptp.h for an explanation.)
17 Error 2: (Look this up in ptp.h for an explanation.)
Dmtp-detect-slacker-pmp.txt15 Error 2: (Look this up in ptp.h for an explanation.)
18 Error 2: (Look this up in ptp.h for an explanation.)
161 Error 2: (Look this up in ptp.h for an explanation.)
/external/archive-patcher/tools/src/main/java/com/google/archivepatcher/tools/
DPatchExplainerTool.java208 private static String path(EntryExplanation explanation) { in path() argument
210 return new String(explanation.getPath().getData(), "UTF-8"); in path()
216 private static String toPlainText(EntryExplanation explanation) { in toPlainText() argument
217 String path = path(explanation); in toPlainText()
218 if (explanation.isNew()) { in toPlainText()
222 + explanation.getCompressedSizeInPatch() in toPlainText()
225 if (explanation.getCompressedSizeInPatch() > 0) { in toPlainText()
227 if (explanation.getReasonIncludedIfNotNew() == RecommendationReason.RESOURCE_CONSTRAINED) { in toPlainText()
235 + explanation.getCompressedSizeInPatch() in toPlainText()
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
DMessagePatternDemo.java32 StringBuilder explanation=new StringBuilder(); in printParts() local
36 explanation.delete(0, 0x7fffffff); in printParts()
45 explanation.append("=\"").append(msg.getSubstring(part)).append('"'); in printParts()
48 explanation.append('=').append(msg.getNumericValue(part)); in printParts()
50 System.out.format("%2d: %s%s%s\n", i, indent, partString, explanation); in printParts()
/external/tensorflow/tensorflow/compiler/jit/
Dnode_matchers.cc187 string explanation = inner_listener.str(); in MatchAndExplain() local
188 if (!explanation.empty()) { in MatchAndExplain()
189 explanation = absl::StrCat(", ", explanation, ","); in MatchAndExplain()
191 *listener << "ctrl_deps" << explanation << " does not match expected: "; in MatchAndExplain()
318 string explanation = inner_listener.str(); in MatchAndExplainInput() local
319 if (!explanation.empty()) { in MatchAndExplainInput()
320 *listener << ", " << explanation; in MatchAndExplainInput()
351 string explanation = inner_listener.str(); in MatchAndExplain() local
352 if (!explanation.empty()) { in MatchAndExplain()
353 *listener << "\n\t" << explanation; in MatchAndExplain()
/external/brotli/research/
Dbrotlidump.py156 def explanation(self, extra=None): member in Symbol
391 return self.explanation(symbol.index)
393 def explanation(self, index): member in Code
478 def explanation(self, index, extra=None): member in WithExtra
504 return self.explanation(symbol.index, extra)
582 def explanation(self, index, extra): member in PrefixCodeHeader
600 def explanation(self, index): member in TreeShapeAlhabet
629 def explanation(self, index, extra=None): member in LengthOfLengthAlphabet
648 def explanation(self, index, extra): member in LengthAlphabet
679 def explanation(self, index): member in WindowSizeAlphabet
[all …]
/external/testng/src/main/java/org/testng/
DAssert.java565 String explanation = "Lists differ at element [" + i + "]: " + e + " != " + a; in assertEquals() local
566 String errorMessage = message == null ? explanation : message + ": " + explanation; in assertEquals()
608 String explanation = "Iterators differ at element [" + i + "]: " + e + " != " + a; in assertEquals() local
609 String errorMessage = message == null ? explanation : message + ": " + explanation; in assertEquals()
617 String explanation = "Actual iterator returned more elements than the expected iterator."; in assertEquals() local
618 String errorMessage = message == null ? explanation : message + ": " + explanation; in assertEquals()
623 String explanation = "Expected iterator returned more elements than the actual iterator."; in assertEquals() local
624 String errorMessage = message == null ? explanation : message + ": " + explanation; in assertEquals()
/external/ltp/testcases/kernel/syscalls/syslog/
Dsyslog0747 explanation="Higher"
49 explanation="All"
53 tst_resm TINFO " $explanation level messages are logged."
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_matchers.cc52 string explanation = inner_listener.str(); in MatchAndExplain() local
53 if (!explanation.empty()) { in MatchAndExplain()
54 *listener << ", " << explanation; in MatchAndExplain()
/external/archive-patcher/explainer/src/test/java/com/google/archivepatcher/explainer/
DPatchExplanationTest.java136 for (EntryExplanation explanation : ALL_EXPLANATIONS) { in testToJson()
137 Assert.assertTrue(asString.contains(new String(explanation.getPath().getData(), "UTF-8"))); in testToJson()
/external/tensorflow/tensorflow/core/framework/
Dop.h243 OpDefBuilderWrapper<true>& Deprecated(int version, string explanation) { in Deprecated() argument
244 builder_.Deprecated(version, std::move(explanation)); in Deprecated()
/external/libpng/contrib/pngminim/
DREADME5 See the individual README and pngusr.dfa files for more explanation.
/external/drrickorang/LoopbackApp/
DAUTHORS3 # See the latter for an explanation.
/external/walt/
DAUTHORS3 # See the latter for an explanation.
/external/yapf/
DAUTHORS3 # See the latter for an explanation.
/external/perf_data_converter/
DAUTHORS3 # See the latter for an explanation.
/external/gemmlowp/
DAUTHORS.txt3 # See the latter for an explanation.
/external/tensorflow/
DAUTHORS3 # See the latter for an explanation.

12345678910>>...12