HomeSort by relevance Sort by last modified time
    Searched refs:Equivalent (Results 1 - 22 of 22) sorted by null

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
greg1.s 11 GREG @ % Equivalent to F7, unless -no-merge-gregs.
13 H9 GREG @ % Equivalent to F7, unless -no-merge-gregs.
  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 103 bool Equivalent(const Message&, const Message&); // expected-note {{'extra::util::MessageUtils::Equivalent' declared here}} \
104 // expected-note {{'::extra::util::MessageUtils::Equivalent' declared here}}
111 return util::MessageUtils::Equivalent(a, b); // expected-error {{no member named 'Equivalent' in namespace 'util::MessageUtils'; did you mean 'extra::util::MessageUtils::Equivalent'?}}
118 return MessageUtils::Equivalent(a, b); // expected-error {{no member named 'Equivalent' in namespace 'util::MessageUtils'; did you mean '::extra::util::MessageUtils::Equivalent'?}}
  /external/fec/
dotprod_sse2_assist.s 2 # Equivalent to the following C code:
dotprod_mmx_assist.s 2 # Equivalent to the following C code:
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
DescriptorUtil.cs 44 /// Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert
  /external/v8/src/js/
string.js 44 // Equivalent to RegExpCreate (ES#sec-regexpcreate)
62 // Equivalent to RegExpCreate (ES#sec-regexpcreate)
  /external/protobuf/src/google/protobuf/util/
message_differencer.h 120 // Determines whether the supplied messages are equivalent. Equivalency is
125 // Also, Equivalent() ignores unknown fields. Use IgnoreField() and Compare()
130 static bool Equivalent(const Message& message1, const Message& message2);
145 // Determines whether the supplied messages are approximately equivalent.
147 // being approximately equivalent. As in
152 // set to said value, as per MessageDiffencer::Equivalent. Use IgnoreField()
348 EQUIVALENT, // Fields with default values are considered set
    [all...]
message_differencer_unittest.cc 246 EXPECT_TRUE(util::MessageDifferencer::Equivalent(msg1, msg2));
262 EXPECT_TRUE(util::MessageDifferencer::Equivalent(msg1, msg2));
276 EXPECT_FALSE(util::MessageDifferencer::Equivalent(msg1, msg2));
286 EXPECT_TRUE(util::MessageDifferencer::Equivalent(msg1, msg2));
298 EXPECT_FALSE(util::MessageDifferencer::Equivalent(msg1, msg2));
313 util::MessageDifferencer::EQUIVALENT);
333 util::MessageDifferencer::EQUIVALENT);
351 util::MessageDifferencer::EQUIVALENT);
368 util::MessageDifferencer::EQUIVALENT);
386 util::MessageDifferencer::EQUIVALENT);
    [all...]
message_differencer.cc 160 bool MessageDifferencer::Equivalent(const Message& message1,
163 differencer.set_message_field_comparison(MessageDifferencer::EQUIVALENT);
180 differencer.set_message_field_comparison(MessageDifferencer::EQUIVALENT);
489 // Ignore unknown fields in EQUIVALENT mode
490 if (message_field_comparison_ != EQUIVALENT) {
518 if (message_field_comparison_ == EQUIVALENT) {
533 if (message_field_comparison_ == EQUIVALENT) {
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
message_differencer.h 120 // Determines whether the supplied messages are equivalent. Equivalency is
125 // Also, Equivalent() ignores unknown fields. Use IgnoreField() and Compare()
130 static bool Equivalent(const Message& message1, const Message& message2);
145 // Determines whether the supplied messages are approximately equivalent.
147 // being approximately equivalent. As in
152 // set to said value, as per MessageDiffencer::Equivalent. Use IgnoreField()
348 EQUIVALENT, // Fields with default values are considered set
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp 298 /// declaration in the second context that we believe to be equivalent.
305 /// \brief Declaration (from, to) pairs that are known not to be equivalent
328 /// equivalent.
331 /// \brief Determine whether the two types are structurally equivalent.
374 /// \brief Determine whether two identifiers are equivalent.
383 /// \brief Determine whether two nested-name-specifiers are equivalent.
391 /// \brief Determine whether two template arguments are equivalent.
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
archv6.s 16 pkhtb r2, r5, r8 @ Equivalent to pkhbt r2, r8, r5.
  /prebuilts/go/darwin-x86/test/
recover.go 188 // Equivalent to test3 but using defer to make the call.
  /prebuilts/go/linux-x86/test/
recover.go 188 // Equivalent to test3 but using defer to make the call.
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter_test.cc 155 if (!MessageDifferencer::Equivalent(expected, *message)) {
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
fmt_test.go 941 {"%v", reflect.ValueOf(A{}).Field(0).String(), "<int Value>"}, // Equivalent to the old way.
    [all...]
  /prebuilts/go/linux-x86/src/fmt/
fmt_test.go 941 {"%v", reflect.ValueOf(A{}).Field(0).String(), "<int Value>"}, // Equivalent to the old way.
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
tables.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
tables.go     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/pydoc_data/
topics.py 3 topics = {'assert': u'\nThe "assert" statement\n**********************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, "assert expression", is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, "assert expression1, expression2", is equivalent to\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that "__debug__" and "AssertionError" refer\nto the built-in variables with those names. In the current\nimplementation, the built-in variable "__debug__" is "True" under\nnormal circumstances, "False" when optimization is requested (command\nline option -O). The current code generator emits no code for an\nassert statement when optimization is requested at compile time. Note\nthat it is unnecessary to include the source code for the expression\nthat failed in the error message; it will be displayed as part of the\nstack trace.\n\nAssignments to "__debug__" are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n',
    [all...]
  /external/python/cpython2/Lib/pydoc_data/
topics.py 3 topics = {'assert': u'\nThe "assert" statement\n**********************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, "assert expression", is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, "assert expression1, expression2", is equivalent to\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that "__debug__" and "AssertionError" refer\nto the built-in variables with those names. In the current\nimplementation, the built-in variable "__debug__" is "True" under\nnormal circumstances, "False" when optimization is requested (command\nline option -O). The current code generator emits no code for an\nassert statement when optimization is requested at compile time. Note\nthat it is unnecessary to include the source code for the expression\nthat failed in the error message; it will be displayed as part of the\nstack trace.\n\nAssignments to "__debug__" are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n',
    [all...]

Completed in 982 milliseconds