Searched refs:unexpected (Results 26 - 50 of 95) sorted by relevance

1234

/external/stlport/stlport/stl/
H A D_exception.h115 using std::unexpected;
117 using _STLP_VENDOR_UNEXPECTED_STD::unexpected;
145 void unexpected();
/external/bison/examples/calc++/
H A Dcalc++-parser.cc765 // Number of reported tokens (one for the "unexpected", one per
781 determine that there is no unexpected or expected token to
834 YYCASE_(1, YY_("syntax error, unexpected %s"));
835 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
836 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
837 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
838 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
/external/bison/data/
H A Dlalr1.cc879 // Number of reported tokens (one for the "unexpected", one per
895 determine that there is no unexpected or expected token to
948 YYCASE_(1, YY_("syntax error, unexpected %s"));
949 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
950 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
951 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
952 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
H A Dglr.c2028 /* Number of reported tokens (one for the "unexpected", one per
2040 that there is no unexpected or expected token to report. In that
2096 YYCASE_(1, YY_("syntax error, unexpected %s"));
2097 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
2098 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
2099 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
2100 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedTokenException.cs129 string unexpected = (TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count) ? TokenNames[unexpectedType] : unexpectedType.ToString();
131 return "MismatchedTokenException(" + unexpected + "!=" + expected + ")";
/external/llvm/test/MC/ARM/
H A Dthumb_set-diagnostics.s40 @ CHECK: error: unexpected token
H A Deh-directive-movsp-diagnostics.s28 @ CHECK: error: unexpected .movsp directive
/external/chromium_org/third_party/cython/src/bin/
H A Dcython_freeze183 fprintf(stderr, "unexpected mbrtowc result -2\n");
/external/chromium_org/v8/src/
H A Dchecks.h46 v8::Handle<v8::Value> unexpected,
/external/chromium_org/v8/test/mjsunit/
H A Dstack-traces.js128 function testTrace(name, fun, expected, unexpected) {
137 if (unexpected) {
138 for (var i = 0; i < unexpected.length; i++) {
139 assertEquals(e.stack.indexOf(unexpected[i]), -1,
140 name + " contains unexpected[" + i + "]");
/external/libcxxabi/src/
H A Dcxa_handlers.cpp40 // unexpected handler should not return
46 unexpected() function in namespace:std
/external/llvm/test/MC/AArch64/
H A Darm64-directive_loh.s72 # CHECK-ERRORS: error: unexpected token in '.loh' directive
78 # CHECK-ERRORS: error: unexpected token in '.loh' directive
84 # CHECK-ERRORS: error: unexpected token in '.loh' directive
90 # CHECK-ERRORS: error: unexpected token in '.loh' directive
/external/llvm/test/MC/SystemZ/
H A Dtokens.s24 #CHECK: error: unexpected token in address
28 #CHECK: error: unexpected token in argument list
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
H A Dparse-js.js662 function unexpected(token) {
685 else if (!can_insert_semicolon()) unexpected();
739 unexpected();
801 unexpected();
810 unexpected(start);
859 unexpected();
867 if (!is("name")) unexpected();
899 if (is("eof")) unexpected();
910 if (is("eof")) unexpected();
924 if (!cur) unexpected();
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpmu-bison.c929 about the unexpected token YYTOKEN for the state stack whose top is
948 /* Number of reported tokens (one for the "unexpected", one per
964 that there is no unexpected or expected token to report. In that
1021 YYCASE_(1, YY_("syntax error, unexpected %s"));
1022 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1023 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1024 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1025 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
H A Dparse-events-bison.c1039 about the unexpected token YYTOKEN for the state stack whose top is
1058 /* Number of reported tokens (one for the "unexpected", one per
1074 that there is no unexpected or expected token to report. In that
1131 YYCASE_(1, YY_("syntax error, unexpected %s"));
1132 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1133 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1134 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1135 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_chan.h107 #error unexpected CHAN_BITS size
/external/junit/src/org/junit/
H A DAssert.java604 * @param unexpected
607 * the object to compare to <code>unexpected</code>
609 static public void assertNotSame(String message, Object unexpected, argument
611 if (unexpected == actual)
620 * @param unexpected
623 * the object to compare to <code>unexpected</code>
625 static public void assertNotSame(Object unexpected, Object actual) { argument
626 assertNotSame(null, unexpected, actual);
/external/mesa3d/src/mesa/swrast/
H A Ds_chan.h107 #error unexpected CHAN_BITS size
/external/stlport/test/unit/cppunit/
H A Dtest_main.cpp134 void _STLP_CALL unexpected() { function in namespace:std
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dprinting.py293 unexpected = run_results.unexpected
294 incomplete = total - expected - unexpected
300 if self._options.verbose or self._options.debug_rwt_logging or unexpected:
308 if unexpected == 0:
317 summary = "%s ran as expected%s, %d didn't%s%s:" % (grammar.pluralize('test', expected), expected_summary_str, unexpected, incomplete_str, timing_summary)
H A Dprinting_unittest.py61 def __init__(self, total=1, expected=1, unexpected=0, fake_results=None):
66 self.unexpected = unexpected
/external/elfutils/0.153/src/
H A Dldscript.c1176 about the unexpected token YYTOKEN for the state stack whose top is
1195 /* Number of reported tokens (one for the "unexpected", one per
1211 that there is no unexpected or expected token to report. In that
1268 YYCASE_(1, YY_("syntax error, unexpected %s"));
1269 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1270 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1271 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1272 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
/external/chromium_org/device/bluetooth/
H A Dbluetooth_adapter_mac.h74 virtual void DiscoveryStopped(bool unexpected) OVERRIDE;
/external/chromium_org/tools/gyp/test/lib/
H A DTestCommon.py362 unexpected = []
365 unexpected.append(line)
367 if unexpected:
371 for line in unexpected:

Completed in 816 milliseconds

1234