Home
last modified time | relevance | path

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

12345678910>>...12

/external/cldr/tools/java/org/unicode/cldr/tool/
DFormattedFileWriter.java48 String explanation = item[2]; in toString() local
52 contents.append("\t<div class='chit'>" + explanation + "</div>" + Chart.LS); in toString()
84 public void add(String title, String fileName, String explanation) { in add() argument
85 anchors.add(new String[] { title, fileName, explanation }); in add()
86 if (explanation != null) { in add()
102 private String explanation; field in FormattedFileWriter
107 … public FormattedFileWriter(String baseFileName, String title, String explanation, Anchors anchors) in FormattedFileWriter() argument
116 this.explanation = explanation; in FormattedFileWriter()
143 if (explanation == null) { in close()
144 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
324 if (explanation != null) { in FormattedFileWriter()
325 out.write(explanation); in FormattedFileWriter()
/external/python/pybind11/tests/
Dconftest.py45 self.explanation = []
57 self.explanation = _make_explanation(a, b)
69 self.explanation = _make_explanation(a, b)
92 self.explanation = a.explanation
120 self.explanation = []
132 self.explanation = _make_explanation(a.splitlines(), b.splitlines())
174 return left.explanation
/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.cc191 string explanation = inner_listener.str(); in MatchAndExplain() local
192 if (!explanation.empty()) { in MatchAndExplain()
193 explanation = absl::StrCat(", ", explanation, ","); in MatchAndExplain()
195 *listener << "ctrl_deps" << explanation << " does not match expected: "; in MatchAndExplain()
322 string explanation = inner_listener.str(); in MatchAndExplainInput() local
323 if (!explanation.empty()) { in MatchAndExplainInput()
324 *listener << ", " << explanation; in MatchAndExplainInput()
355 string explanation = inner_listener.str(); in MatchAndExplain() local
356 if (!explanation.empty()) { in MatchAndExplain()
357 *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/tensorflow/tensorflow/python/tpu/
Dtensor_tracer_report.py216 def instrument(self, name, explanation): argument
217 self.instrument_records[name] = explanation
219 def instrument_op(self, op, explanation): argument
220 self.instrument(op.name, explanation)
222 def instrument_tensor(self, tensor, explanation): argument
223 self.instrument(tensor.name, explanation)
273 tensor_def.explanation = self.instrument_records[tensor.name]
275 tensor_def.explanation = self.instrument_records[tensor.op.name]
Dtensor_tracer.proto71 // Detailed explanation why the tensor is traced or not.
72 string explanation = 5; field
/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.cc56 string explanation = inner_listener.str(); in MatchAndExplain() local
57 if (!explanation.empty()) { in MatchAndExplain()
58 *listener << ", " << explanation; in MatchAndExplain()
/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/gemmlowp/
DAUTHORS.txt3 # See the latter for an explanation.
/external/yapf/
DAUTHORS3 # See the latter for an explanation.
/external/libprotobuf-mutator/
DAUTHORS2 # This file is distinct from the CONTRIBUTORS file. See the latter for an explanation.
/external/tensorflow/
DAUTHORS3 # See the latter for an explanation.
/external/swiftshader/
DAUTHORS.txt3 # See the latter for an explanation.
/external/google-fonts/fraunces/
DAUTHORS.txt3 # See the latter for an explanation.
/external/python/cpython2/Demo/tkinter/
DREADME3 See the toplevel README for an explanation of the difference between
/external/tensorflow/tensorflow/core/framework/
Dop.h256 OpDefBuilderWrapper<true>& Deprecated(int version, string explanation) { in Deprecated() argument
257 builder_.Deprecated(version, std::move(explanation)); in Deprecated()
/external/volley/
Drules.gradle1 // See build.gradle for an explanation of what this file is.
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_CholeskyGrad.pbtxt27 For an explanation see "Differentiation of the Cholesky algorithm" by
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
DREADME1 << First, an explanation for the perl script and the stuff >>

12345678910>>...12