HomeSort by relevance Sort by last modified time
    Searched defs:mismatch (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3treeparser.c 38 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
83 parser->rec->mismatch = mismatch;
169 /** Override for standard base recognizer mismatch function
174 mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) function
antlr3baserecognizer.c 56 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
172 recognizer->mismatch = mismatch;
409 /// plain mismatch(), which does not recover. Then any error
475 // going on, so we mismatch, which creates an exception in the recognizer exception
633 /// Factor out what to do upon token mismatch so tree parsers can behave
639 /// \remark mismatch only works for parsers and must be overridden for anything else.
642 mismatch(pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) function
665 ANTLR3_FPRINTF(stderr, "Base recognizer function 'mismatch' called by unknown parser type - provide override for this function\n");
933 /// token mismatch. Upon token mismatch, if LA(1) is member o
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
Condition.java 17 Condition<O> apply(I value, Description mismatch);
33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) {
34 return new Matched<T>(theValue, mismatch);
39 private final Description mismatch; field in class:Condition.Matched
41 private Matched(T theValue, Description mismatch) {
43 this.mismatch = mismatch;
51 mismatch.appendText(message);
52 matcher.describeMismatch(theValue, mismatch);
58 return next.apply(theValue, mismatch);
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 105 const char * const mismatch = pattern; local
108 *ep = mismatch;
115 *ep = mismatch;
132 *ep = mismatch;
147 const char * const mismatch = *pattern; local
246 *pattern = mismatch;
295 const char *mismatch = NULL; local
373 mismatch = pattern;
443 * but slashes will mismatch, and are not consumed)
457 pattern = mismatch;
    [all...]
  /cts/tests/signature/src/android/signature/cts/
FailureType.java 25 static FailureType mismatch(JDiffClassDescription description) { method in class:FailureType
ApiComplianceChecker.java 68 resultObserver.notifyFailure(FailureType.mismatch(classDescription),
76 resultObserver.notifyFailure(FailureType.mismatch(classDescription),
77 classDescription.getAbsoluteClassName(), "Annotation mismatch");
84 resultObserver.notifyFailure(FailureType.mismatch(classDescription),
85 classDescription.getAbsoluteClassName(), "Extends mismatch");
91 resultObserver.notifyFailure(FailureType.mismatch(classDescription),
92 classDescription.getAbsoluteClassName(), "Implements mismatch");
138 return String.format("modifier mismatch - description (%s), class (%s)",
475 // FIXME: A workaround to fix the final mismatch on enumeration
531 return String.format("modifier mismatch - description (%s), method (%s)"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
algobase.h 49 // NB: equal and lexicographical_compare require mismatch.
54 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
56 { return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2); }
61 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
63 { return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2, __pred); }
71 { return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2, __pred); }
73 // Parallel mismatch for random access iterators
89 return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2, __pred);
95 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2) function in namespace:__parallel
113 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2 function in namespace:__parallel
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
algobase.h 49 // NB: equal and lexicographical_compare require mismatch.
54 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
56 { return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2); }
61 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2, function in namespace:__parallel
63 { return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2, __pred); }
71 { return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2, __pred); }
73 // Parallel mismatch for random access iterators
89 return _GLIBCXX_STD_A::mismatch(__begin1, __end1, __begin2, __pred);
95 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2) function in namespace:__parallel
113 mismatch(_IIter1 __begin1, _IIter1 __end1, _IIter2 __begin2 function in namespace:__parallel
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 98 * plain {@link #mismatch}, which does not recover. Then any error
183 /** Factor out what to do upon token mismatch so tree parsers can behave
192 mismatch: function(input, ttype, follow) {
573 * token mismatch. Upon token mismatch, if LA(1) is member of
181 }, method in class:org.antlr.runtime.BaseRecognizer
    [all...]
  /external/libmicrohttpd/src/microhttpd/
test_postprocessor.c 73 mismatch (const char *a, const char *b) function
106 (mismatch (filename, want[idx + 1])) ||
107 (mismatch (content_type, want[idx + 2])) ||
108 (mismatch (transfer_encoding, want[idx + 3])) ||
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StrictStubbingEndToEndTest.java 103 @Test public void mismatch() { method in class:StrictStubbingEndToEndTest.ReportMismatchButNotUnusedStubbing
130 @Test public void mismatch() { method in class:StrictStubbingEndToEndTest.LenientStrictness1
143 @Test public void mismatch() { method in class:StrictStubbingEndToEndTest.LenientStrictness2
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
ext_test.go 31 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
93 // allowedMismatch determines whether this mismatch should be
150 if !*mismatch {
153 suffix += " (allowed mismatch)"
167 if *mismatch {
30 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 32 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
93 // allowedMismatch determines whether this mismatch should be
148 if !*mismatch {
151 suffix += " (allowed mismatch)"
165 if *mismatch {
31 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
ext_test.go 31 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
93 // allowedMismatch determines whether this mismatch should be
150 if !*mismatch {
153 suffix += " (allowed mismatch)"
167 if *mismatch {
30 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 32 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
93 // allowedMismatch determines whether this mismatch should be
148 if !*mismatch {
151 suffix += " (allowed mismatch)"
165 if *mismatch {
31 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3baserecognizer.h 141 /** Pointer to a function that works out what to do when a token mismatch
144 void (*mismatch) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member in struct:ANTLR3_BASE_RECOGNIZER_struct
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 121 sub mismatch { subroutine
122 Readonly my $usage => 'void mismatch(IntStream input, int ttype, BitSet follow)';
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/
ext_test.go 31 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
112 // allowedMismatch determines whether this mismatch should be
171 if !*mismatch {
174 suffix += " (allowed mismatch)"
190 if *mismatch {
30 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 30 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
92 // allowedMismatch determines whether this mismatch should be
149 if !*mismatch {
152 suffix += " (allowed mismatch)"
166 if *mismatch {
29 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/
ext_test.go 31 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
112 // allowedMismatch determines whether this mismatch should be
171 if !*mismatch {
174 suffix += " (allowed mismatch)"
190 if *mismatch {
30 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 30 mismatch = flag.Bool("mismatch", false, "log allowed mismatches")
92 // allowedMismatch determines whether this mismatch should be
149 if !*mismatch {
152 suffix += " (allowed mismatch)"
166 if *mismatch {
29 mismatch = flag.Bool("mismatch", false, "log allowed mismatches") var
  /external/tensorflow/tensorflow/compiler/xla/tests/
literal_test_util.cc 46 << "tupleness-mismatch! want: " << ShapeUtil::HumanString(expected)
61 << "mismatch in tuple index " << i;
85 << "mismatch in dimension #" << i
362 // If the shapes mismatch, we simply fail the expectation instead of
421 << "\nmax relative mismatch at index "
426 << "\nmax absolute mismatch at index "
431 << "\nfirst mismatch at index "
435 << "\nlast mismatch at index "
481 const bool mismatch = local
483 return !mismatch;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_algobase.h 1160 mismatch(_InputIterator1 __first1, _InputIterator1 __last1, function
1198 mismatch(_InputIterator1 __first1, _InputIterator1 __last1, function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_algobase.h 1160 mismatch(_InputIterator1 __first1, _InputIterator1 __last1, function
1198 mismatch(_InputIterator1 __first1, _InputIterator1 __last1, function
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elf32-visium.c 770 flagword mismatch; local
791 mismatch = (new_flags ^ old_flags)
793 if (mismatch & EF_VISIUM_ARCH_GR6)
799 else if (mismatch & EF_VISIUM_ARCH_MCM)
805 else if (mismatch & EF_VISIUM_ARCH_MCM24)
812 if (mismatch)

Completed in 742 milliseconds

1 2 3 4 5 6 7