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

  /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...]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 106 const char * const mismatch = pattern; local
109 *ep = mismatch;
116 *ep = mismatch;
133 *ep = mismatch;
148 const char * const mismatch = *pattern; local
245 *pattern = mismatch;
294 const char *mismatch = NULL; local
376 mismatch = pattern;
446 * but slashes will mismatch, and are not consumed)
460 pattern = mismatch;
    [all...]
  /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)';
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_blend.c 530 fprintf(stderr, "MISMATCH\n");
570 boolean mismatch; local
605 mismatch = FALSE;
608 mismatch = TRUE;
610 if (mismatch) {
615 fprintf(stderr, "MISMATCH\n");
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_blend.c 530 fprintf(stderr, "MISMATCH\n");
570 boolean mismatch; local
605 mismatch = FALSE;
608 mismatch = TRUE;
610 if (mismatch) {
615 fprintf(stderr, "MISMATCH\n");
  /external/blktrace/
blkiomon.c 104 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/chromium_org/net/quic/crypto/
quic_crypto_client_config.cc 711 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/Python/antlr3/
tree.py 2342 def mismatch(self, input, ttype, follow): member in class:TreeParser
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 155 def mismatch( input, type, follow = nil ) method in class:ANTLR3.AST.TreeParser
    [all...]
  /art/runtime/verifier/
method_verifier.cc 1936 bool mismatch = false; local
    [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
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86id.c 644 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 = 1
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 1208 int mismatch = 0; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.c 565 log_err("Mismatch between getLogicalMap() and getVisualIndex()\n");
613 log_err("Mismatch between getVisualMap() and getLogicalIndex()\n");
4199 UBool mismatch, testOK = TRUE; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiditst.c 567 log_err("Mismatch between getLogicalMap() and getVisualIndex()\n");
615 log_err("Mismatch between getVisualMap() and getLogicalIndex()\n");
4439 UBool mismatch, testOK = TRUE; local
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 8138 bool mismatch = false; local
    [all...]
SemaDecl.cpp 8020 bool mismatch = true; local
    [all...]
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 

Completed in 965 milliseconds