Home
last modified time | relevance | path

Searched refs:explanation (Results 1 - 20 of 20) sorted by relevance

/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
H A Dedge.js39 #explanation
95 this.#explanation = null
118 // return the edge data, and an explanation of how that edge came to be here
120 if (!this.#explanation) {
121 const explanation = {
127 explanation.rawSpec = this.rawSpec
128 explanation.overridden = true
131 explanation.bundled = this.bundled
134 explanation.error = this.error
137 explanation
[all...]
/third_party/ltp/scripts/
H A Dcheckbashisms.pl279 my $explanation = '';
397 $explanation = "sourced script with arguments";
399 $explanation);
415 $explanation = $expl;
417 $explanation);
464 $explanation = $expl;
466 $explanation);
479 $explanation = $expl;
481 $explanation);
488 $explanation
[all...]
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
H A DMessagePatternDemo.java32 StringBuilder explanation=new StringBuilder(); in printParts()
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()
/third_party/skia/third_party/externals/brotli/research/
H A Dbrotlidump.py156 def explanation(self, extra=None): member in Symbol
157 """Long explanation of the value from the numeric value
341 explanation(index): show meaning of symbol, shown in Layout.verboseRead
347 #default callback calls explanation
391 return self.explanation(symbol.index)
393 def explanation(self, index): member in Code
394 """Long explanation of the value from the numeric value
478 def explanation(self, index, extra=None): member in WithExtra
479 """Expanded version of Code.explanation supporting extra bits.
504 return self.explanation(symbo
582 def explanation(self, index, extra): global() member in PrefixCodeHeader
600 def explanation(self, index): global() member in TreeShapeAlhabet
629 def explanation(self, index, extra=None): global() member in LengthOfLengthAlphabet
648 def explanation(self, index, extra): global() member in LengthAlphabet
679 def explanation(self, index): global() member in WindowSizeAlphabet
730 def explanation(self, index, extra): global() member in MetablockLengthAlphabet
743 def explanation(self, index): global() member in ReservedAlphabet
750 def explanation(self, index): global() member in FillerAlphabet
798 def explanation(self, index, extra): global() member in SkipLengthAlphabet
834 def explanation(self, index, extra): global() member in TypeCountAlphabet
861 def explanation(self, index): global() member in BlockTypeAlphabet
884 def explanation(self, index, extra): global() member in BlockCountAlphabet
904 def explanation(self, index, extra): global() member in DistanceParamAlphabet
926 def explanation(self, index): global() member in LiteralContextMode
944 def explanation(self, index, extra): global() member in RLEmaxAlphabet
985 def explanation(self, index, extra): global() member in TreeAlphabet
1011 def explanation(self, index, extra=None): global() member in LiteralAlphabet
1099 def explanation(self, index, extra): global() member in InsertAndCopyAlphabet
1190 def explanation(self, index, extra): global() member in DistanceAlphabet
[all...]
/third_party/ltp/testcases/kernel/syscalls/syslog/
H A Dsyslog0747 explanation="Higher"
49 explanation="All"
53 tst_resm TINFO " $explanation level messages are logged."
/third_party/libuv/test/
H A Dtask.h287 #define RETURN_SKIP(explanation) \
289 fprintf(stderr, "%s\n", explanation); \
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
H A Dflag.h389 // `default_value` is only used as a double check on the type. `explanation` is
393 #define ABSL_RETIRED_FLAG(type, name, default_value, explanation) \
/third_party/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc263 // Tests duplicated value -- expect no explanation.
271 // But in any case there should be no explanation. in TYPED_TEST()
317 // but (as above) not reported in the explanation.
658 ss2.str()); // Failed match where both arguments need explanation. in TEST_P()
668 // explanation. in TEST_P()
959 // For testing Args<>'s explanation.
1696 auto explanation = ss.str(); in TEST() local
1697 EXPECT_THAT(explanation, HasSubstr("std::runtime_error")); in TEST()
1739 auto explanation = ss.str(); in TEST_P() local
1740 EXPECT_THAT(explanation, HasSubst in TEST_P()
[all...]
H A Dgmock-matchers-arithmetic_test.cc561 // matcher doesn't give an explanation, so only the first matcher's in TEST_P()
562 // explanation is printed. in TEST_P()
572 // matcher doesn't given an explanation. in TEST_P()
590 // explain. Since it doesn't given an explanation, nothing is in TEST_P()
777 // matcher doesn't give an explanation, so only the first matcher's in TEST_P()
778 // explanation is printed. in TEST_P()
788 // matcher doesn't given an explanation. in TEST_P()
806 // explain. Since it doesn't given an explanation, nothing is in TEST_P()
1402 const std::string explanation = in TEST_F() local
1406 EXPECT_TRUE(explanation in TEST_F()
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DWebGLCompatibilityTest.cpp307 const char *explanation);
5088 const char *explanation)
5100 EXPECT_GL_NO_ERROR() << explanation;
5104 EXPECT_GL_ERROR(expectedError) << explanation;
5117 EXPECT_GL_NO_ERROR() << explanation << " (texStorage2D)";
5121 EXPECT_GL_ERROR(expectedError) << explanation << " (texStorage2D)";
5134 EXPECT_GL_NO_ERROR() << explanation << " (texStorage2DEXT)";
5138 EXPECT_GL_ERROR(expectedError) << explanation << " (texStorage2DEXT)";
5153 const char *explanation;
5194 test.expectedError, test.explanation);
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_frei0r.c288 "name:%s author:'%s' explanation:'%s' color_model:%s " in frei0r_init()
290 pi->name, pi->author, pi->explanation, in frei0r_init()
/third_party/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h303 // A match result listener that stores the explanation in a string.
308 // Returns the explanation accumulated so far.
311 // Clears the explanation accumulated so far.
562 // If the explanation is not empty, prints it to the ostream.
563 inline void PrintIfNotEmpty(const std::string& explanation, in PrintIfNotEmpty() argument
565 if (explanation != "" && os != nullptr) { in PrintIfNotEmpty()
566 *os << ", " << explanation; in PrintIfNotEmpty() local
590 // inner explanation. in MatchPrintAndExplain()
1605 "rerun to generate the explanation."; in operator ()()
2542 // construct the inner explanation
2966 const std::string explanation = inner_listener.str(); global() variable
2968 *listener << "whose first field is a value " << explanation; global() variable
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dsparccpuid.S390 ! see above for explanation
/third_party/openssl/crypto/
H A Dsparccpuid.S390 ! see above for explanation
/third_party/glslang/glslang/MachineIndependent/
H A DParseHelper.cpp638 const char* explanation = "variable indexing sampler array"; in handleBracketDereference() local
639 requireProfile(base->getLoc(), EEsProfile | ECoreProfile | ECompatibilityProfile, explanation); in handleBracketDereference()
640 profileRequires(base->getLoc(), EEsProfile, 320, Num_AEP_gpu_shader5, AEP_gpu_shader5, explanation); in handleBracketDereference()
641 profileRequires(base->getLoc(), ECoreProfile | ECompatibilityProfile, 400, nullptr, explanation); in handleBracketDereference()
6627 const char *explanation = "image variables not declared 'writeonly' and without a format layout qualifier"; in layoutTypeCheck() local
6628 requireProfile(loc, ECoreProfile | ECompatibilityProfile, explanation); in layoutTypeCheck()
6629 profileRequires(loc, ECoreProfile | ECompatibilityProfile, 0, E_GL_EXT_shader_image_load_formatted, explanation); in layoutTypeCheck()
/third_party/python/Lib/
H A D_pydecimal.py204 the explanation in _raise_error (For example,
4038 def _raise_error(self, condition, explanation = None, *args):
4058 raise error(explanation)
/third_party/python/Lib/test/
H A Dtest_socket.py1037 explanation = (
1045 with self.assertRaises(OSError, msg=explanation):
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm881 variable C<$Text::Template::ERROR> to contain an explanation of what
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm881 variable C<$Text::Template::ERROR> to contain an explanation of what
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex6385 \comment % For explanation, see the end of def\group.

Completed in 65 milliseconds