Searched defs:mismatch (Results 1 - 21 of 21) sorted by relevance

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c38 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
H A Dantlr3baserecognizer.c56 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
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3baserecognizer.h141 /** 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/
H A DBaseRecognizer.pm121 sub mismatch { subroutine
122 Readonly my $usage => 'void mismatch(IntStream input, int ttype, BitSet follow)';
/external/stlport/stlport/stl/
H A D_algobase.h518 // equal and mismatch
522 _STLP_STD::pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1, function
536 _STLP_STD::pair<_InputIter1, _InputIter2> mismatch(_InputIter1 __first1, function
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test_blend.c570 boolean mismatch; local
605 mismatch = FALSE;
608 mismatch = TRUE;
610 if (mismatch) {
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_blend.c570 boolean mismatch; local
605 mismatch = FALSE;
608 mismatch = TRUE;
610 if (mismatch) {
/external/blktrace/
H A Dblkiomon.c104 static long leftover = 0, driverdata = 0, match = 0, mismatch = 0, sequence = 0; variable
425 dump_bits(t_old, t_young, "mismatch");
426 mismatch++;
591 fprintf(debug.fp, "%ld leftover, %ld match, %ld mismatch, "
593 leftover, match, mismatch, driverdata, sequence);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py2342 def mismatch(self, input, ttype, follow): member in class:TreeParser
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb155 def mismatch( input, type, follow = nil ) method in class:ANTLR3.AST.TreeParser
/external/chromium_org/net/quic/crypto/
H A Dquic_crypto_client_config.cc711 bool mismatch = num_supported_versions != negotiated_versions.size(); local
712 for (size_t i = 0; i < num_supported_versions && !mismatch; ++i) {
713 mismatch = QuicTagToQuicVersion(supported_version_tags[i]) !=
719 if (mismatch) {
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js98 * 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
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dx86id.c644 int mismatch = 0; local
691 for (i = 0, op = use_ops[0]; op && i<info->num_operands && !mismatch;
697 mismatch = 1;
705 mismatch = 1;
716 mismatch = 1;
723 mismatch = 1;
731 mismatch = 1;
739 mismatch = 1;
746 mismatch = 1;
751 mismatch
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcbiditst.c3386 log_err("\nActual and expected output mismatch.\n"
4199 UBool mismatch, testOK = TRUE; local
4217 mismatch = FALSE;
4236 mismatch |= (UBool)(j >= nPortions ||
4243 if (mismatch || j != nPortions) {
4245 log_err("\nProcessed lengths mismatch.\n"
4364 log_err("\nActual and expected output mismatch.\n"
4638 log_err("\nActual and expected output mismatch on case %d.\n"
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditst.c3626 log_err("\nActual and expected output mismatch.\n"
4439 UBool mismatch, testOK = TRUE; local
4457 mismatch = FALSE;
4476 mismatch |= (UBool)(j >= nPortions ||
4483 if (mismatch || j != nPortions) {
4485 log_err("\nProcessed lengths mismatch.\n"
4604 log_err("\nActual and expected output mismatch.\n"
4878 log_err("\nActual and expected output mismatch on case %d.\n"
/external/clang/lib/Sema/
H A DSemaChecking.cpp3230 // Rather than emitting a normal format/argument mismatch, we want to
8138 bool mismatch = false; local
8140 mismatch = !Context.hasSameType(ArgumentType, RequiredType);
8147 if (mismatch)
8151 mismatch = false;
8154 mismatch = !isLayoutCompatible(Context,
8158 mismatch = !isLayoutCompatible(Context, ArgumentType, RequiredType);
8160 if (mismatch)
H A DSemaDecl.cpp1062 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
2927 // Merge attributes from the parameters. These can mismatch with K&R
6314 // Add 1 to the index so that 0 can mean the mismatch didn't
7779 assert(NewTemplateDecl && "Template/non-template mismatch");
8020 bool mismatch = true; local
8023 mismatch = false;
8037 mismatch = !qs.empty();
8041 if (mismatch) {
10654 // Warn about the struct/class tag mismatch.
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 363 milliseconds