/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
BaseRecognizer.cs | 280 if ( ute.Expecting == TokenTypes.EndOfFile ) 286 tokenName = tokenNames[ute.Expecting]; 289 " expecting " + tokenName; 295 if ( mte.Expecting == TokenTypes.EndOfFile ) 301 tokenName = tokenNames[mte.Expecting]; 309 if ( mte.Expecting == TokenTypes.EndOfFile ) 315 tokenName = tokenNames[mte.Expecting]; 318 " expecting " + tokenName; 324 if ( mtne.Expecting == TokenTypes.EndOfFile ) 330 tokenName = tokenNames[mtne.Expecting]; [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRBaseRecognizer.m | 356 if ( ute.expecting == ANTLRTokenTypeEOF ) { 360 tokenName = (NSString *)[theTokNams objectAtIndex:ute.expecting]; 362 msg = [NSString stringWithFormat:@"extraneous input %@ expecting %@", [self getTokenErrorDisplay:[ute getUnexpectedToken]], 368 if ( mte.expecting== ANTLRTokenTypeEOF ) { 372 tokenName = [theTokNams objectAtIndex:mte.expecting]; 379 if ( mte.expecting== ANTLRTokenTypeEOF ) { 383 tokenName = [theTokNams objectAtIndex:mte.expecting]; 385 msg = [NSString stringWithFormat:@"mismatched input %@ expecting %@",[self getTokenErrorDisplay:(e.token)], tokenName]; 390 if ( mtne.expecting==ANTLRTokenTypeEOF ) { 394 tokenName = [theTokNams objectAtIndex:mtne.expecting]; [all...] |
/external/libxml2/ |
rngparser.c | 710 ERROR("Expecting \")\" here"); 810 ERROR("Expecting \"{\" here"); 817 ERROR("Expecting \"}\" here"); 984 ERROR("Expecting \")\" here"); 1122 ERROR("expecting \"=\" or \"&=\" or \"|=\" here") [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
Parser.java | [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestInterpretedLexing.java | 176 String expecting = "123 139.52"; local 177 assertEquals(expecting, result);
|
/external/deqp/external/openglcts/modules/gl/ |
gl4cIncompleteTextureAccessTests.hpp | 87 * expecting ?(0.0, 0.0, 0.0, 1.0) and: 95 * expecting ?0.0.
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ |
ParseException.java | 135 retval += "Was expecting:" + eol + " "; 137 retval += "Was expecting one of:" + eol + " ";
|
/external/libxkbcommon/xkbcommon/test/ |
rules-file.c | 61 fprintf(stderr, "Expecting: FAILURE\n"); 63 fprintf(stderr, "Expecting: %s\t%s\t%s\t%s\n",
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
StatepointLowering.h | 68 /// Remove this gc_relocate from the list we're expecting to see 69 /// before the next statepoint. If we weren't expecting to see
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/ |
input_fn_utils.py | 60 """Build an input_fn appropriate for serving, expecting fed tf.Examples. 88 """Build an input_fn appropriate for serving, expecting feature Tensors.
|
/external/webrtc/webrtc/modules/pacing/ |
packet_router_unittest.cc | 94 // it is dropped as expected by not expecting any calls to rtp_1. 152 // to send by not expecting any calls. Instead verify rtp_2 is called.
|
/external/webrtc/webrtc/p2p/base/ |
stunrequest.cc | 103 << " (expecting " 114 // transaction ID of a response we are expecting.
|
/frameworks/base/core/java/com/android/internal/widget/ |
TextProgressBar.java | 116 throw new RuntimeException("Expecting child ProgressBar with id " + 135 "Expecting child ProgressBar with id 'android.R.id.progress'");
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
RilMessageDecoder.java | 134 CatLog.d(this, "StateStart unexpected expecting START=" + 150 CatLog.d(this, "StateCmdParamsReady expecting CMD_PARAMS_READY="
|
/kernel/tests/net/test/ |
tcp_test.py | 122 self.ExpectPacketOn(netid, msg + ": expecting %s" % desc, data) 133 self.ExpectPacketOn(netid, msg + ": expecting %s" % ack_desc, ack)
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
ParseException.java | 144 retval += "Was expecting:" + eol + " "; 146 retval += "Was expecting one of:" + eol + " ";
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
ParseException.java | 144 retval += "Was expecting:" + eol + " "; 146 retval += "Was expecting one of:" + eol + " ";
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
ParseException.java | 144 retval += "Was expecting:" + eol + " "; 146 retval += "Was expecting one of:" + eol + " ";
|
/external/scapy/scapy/asn1/ |
ber.py | 79 raise BER_Decoding_Error("BER_len_dec: Got %i bytes while expecting %i" % (len(s)-1, l),remaining=s) 201 raise BER_Decoding_Error("%s: Got empty object while expecting tag %r" % 208 raise BER_BadTag_Decoding_Error("%s: Got tag [%i/%#x] while expecting %r" % 215 raise BER_Decoding_Error("%s: No bytes while expecting a length" % 222 raise BER_Decoding_Error("%s: Got %i bytes while expecting %i" %
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/ |
parser.go | 101 p.syntax_error("expecting " + tokstring(tok)) 143 case strings.HasPrefix(msg, "expecting"): 374 p.syntax_error(fmt.Sprintf("expecting %s or %s", tokstring(sep), tokstring(close))) 533 p.syntax_error("expecting name or (") 656 p.syntax_error("unexpected <-, expecting chan") 665 p.syntax_error(fmt.Sprintf("unexpected %s, expecting chan", String(t))) 791 p.syntax_error("expecting expression") 857 p.syntax_error("expecting name or (") 1006 p.syntax_error("expecting type") 1312 p.syntax_error("expecting field name or embedded type" [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/ |
parser.go | 101 p.syntax_error("expecting " + tokstring(tok)) 143 case strings.HasPrefix(msg, "expecting"): 374 p.syntax_error(fmt.Sprintf("expecting %s or %s", tokstring(sep), tokstring(close))) 533 p.syntax_error("expecting name or (") 656 p.syntax_error("unexpected <-, expecting chan") 665 p.syntax_error(fmt.Sprintf("unexpected %s, expecting chan", String(t))) 791 p.syntax_error("expecting expression") 857 p.syntax_error("expecting name or (") 1006 p.syntax_error("expecting type") 1312 p.syntax_error("expecting field name or embedded type" [all...] |
/cts/tests/framework/base/activitymanager/util/src/android/server/am/ |
ActivityManagerTestBase.java | [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t057autoAST.html | 369 expecting = "id list=[a,b],a b" 370 assertEquals(expecting, found); 377 expecting = "id list=[a,b],(a b)" 378 assertEquals(expecting, found); 425 assertEquals(["line 1:4 extraneous input u'34' expecting ID"], 440 assertEquals(["line 1:0 mismatched input u'x' expecting set None"], errors); 459 assertEquals(["line 1:4 extraneous input u'ick' expecting INT"],
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
BaseRecognizer.js | 299 if ( ute.expecting== org.antlr.runtime.Token.EOF ) { 302 tokenName = tokenNames[ute.expecting]; 305 " expecting "+tokenName; 310 if ( mte.expecting== org.antlr.runtime.Token.EOF ) { 313 tokenName = tokenNames[mte.expecting]; 320 if ( mte.expecting== org.antlr.runtime.Token.EOF ) { 324 tokenName = tokenNames[mte.expecting]; 327 " expecting "+tokenName; 338 " expecting set "+e.expecting; [all...] |
/external/libmojo/mojo/public/cpp/bindings/lib/ |
array_internal.h | 166 "invalid handle or interface ID in array expecting valid " 192 MakeMessageWithArrayIndex("null in array expecting valid pointers", 243 MakeMessageWithArrayIndex("null in array expecting valid unions",
|