Home
last modified time | relevance | path

Searched refs:mte (Results 1 – 25 of 75) sorted by relevance

123

/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DLexer.cs160 catch (MismatchedTokenException mte) in NextToken()
162 ReportError(mte); in NextToken()
270 … MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match()
271 Recover( mte ); in Match()
272 throw mte; in Match()
294 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match()
295 Recover( mte ); // don't really recover; just consume in lexer in Match()
296 throw mte; in Match()
349 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
350 …cter " + GetCharErrorDisplay( e.Character ) + " expecting " + GetCharErrorDisplay( mte.Expecting ); in GetErrorMessage()
DBaseRecognizer.cs295 MissingTokenException mte = (MissingTokenException)e; in GetErrorMessage()
297 if ( mte.Expecting == TokenTypes.EndOfFile ) in GetErrorMessage()
303 tokenName = tokenNames[mte.Expecting]; in GetErrorMessage()
309 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
311 if ( mte.Expecting == TokenTypes.EndOfFile ) in GetErrorMessage()
317 tokenName = tokenNames[mte.Expecting]; in GetErrorMessage()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimLexer.cs278 … MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match()
279 Recover( mte ); in Match()
280 throw mte; in Match()
302 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match()
303 Recover( mte ); // don't really recover; just consume in lexer in Match()
304 throw mte; in Match()
358 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
359 …cter " + GetCharErrorDisplay( e.Character ) + " expecting " + GetCharErrorDisplay( mte.Expecting ); in GetErrorMessage()
/external/arm-optimized-routines/
DAndroid.bp107 "string/aarch64/memchr-mte.S",
111 "string/aarch64/stpcpy-mte.S",
113 "string/aarch64/strchrnul-mte.S",
115 "string/aarch64/strchr-mte.S",
117 "string/aarch64/strcmp-mte.S",
119 "string/aarch64/strcpy-mte.S",
121 "string/aarch64/strlen-mte.S",
123 "string/aarch64/strncmp-mte.S",
126 "string/aarch64/strrchr-mte.S",
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DLexer.cs216 … MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match()
217 Recover(mte); in Match()
218 throw mte; in Match()
236 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match()
237 Recover(mte); // don't really recover; just consume in lexer in Match()
238 throw mte; in Match()
283 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
284 …haracter " + GetCharErrorDisplay(e.Character) + " expecting " + GetCharErrorDisplay(mte.Expecting); in GetErrorMessage()
DBaseRecognizer.cs263 MissingTokenException mte = (MissingTokenException)e; in GetErrorMessage()
265 if (mte.Expecting == TokenTypes.EndOfFile) { in GetErrorMessage()
268 tokenName = tokenNames[mte.Expecting]; in GetErrorMessage()
272 MismatchedTokenException mte = (MismatchedTokenException)e; in GetErrorMessage()
274 if (mte.Expecting == TokenTypes.EndOfFile) { in GetErrorMessage()
277 tokenName = tokenNames[mte.Expecting]; in GetErrorMessage()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DLexer.java185 MismatchedTokenException mte = in match() local
187 recover(mte); in match()
188 throw mte; in match()
206 MismatchedTokenException mte = in match() local
208 recover(mte); // don't really recover; just consume in lexer in match()
209 throw mte; in match()
282 MismatchedTokenException mte = (MismatchedTokenException)e; in getErrorMessage() local
283 …msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting "+getCharErrorDisplay(mte.expec… in getErrorMessage()
DBaseRecognizer.java234 MissingTokenException mte = (MissingTokenException)e; in getErrorMessage() local
236 if ( mte.expecting== Token.EOF ) { in getErrorMessage()
240 tokenName = tokenNames[mte.expecting]; in getErrorMessage()
245 MismatchedTokenException mte = (MismatchedTokenException)e; in getErrorMessage() local
247 if ( mte.expecting== Token.EOF ) { in getErrorMessage()
251 tokenName = tokenNames[mte.expecting]; in getErrorMessage()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DLexer.js125 mte;
134 mte = new org.antlr.runtime.MismatchedTokenException(s.charAt(i), this.input); variable
135 this.recover(mte);
136 throw mte;
148 mte = new org.antlr.runtime.MismatchedTokenException(s, this.input); variable
149 this.recover(mte);
150 throw mte;
DBaseRecognizer.js294 mte,
308 mte = e;
310 if ( mte.expecting== org.antlr.runtime.Token.EOF ) {
313 tokenName = tokenNames[mte.expecting];
318 mte = e;
320 if ( mte.expecting== org.antlr.runtime.Token.EOF ) {
324 tokenName = tokenNames[mte.expecting];
/external/arm-trusted-firmware/lib/el3_runtime/aarch64/
Dcontext_mgmt.c149 unsigned int mte = get_armv8_5_mte_support(); in cm_setup_context() local
157 assert((mte == MTE_IMPLEMENTED_ELX) || (mte == MTE_IMPLEMENTED_ASY)); in cm_setup_context()
164 if ((mte == MTE_IMPLEMENTED_EL0) || in cm_setup_context()
169 (((mte == MTE_IMPLEMENTED_ELX) || (mte == MTE_IMPLEMENTED_ASY)) && in cm_setup_context()
/external/antlr/runtime/ObjC/Framework/
DLexer.m236 …MismatchedTokenException *mte = [MismatchedTokenException newExceptionChar:[aString characterAtInd…
237 mte.c = c;
238 [self recover:mte];
239 @throw mte;
263 … MismatchedTokenException *mte = [MismatchedTokenException newExceptionChar:aChar Stream:input];
264 mte.c = charLA;
265 [self recover:mte];
266 @throw mte;
346 MismatchedTokenException *mte = (MismatchedTokenException *)e;
348 [self getCharErrorDisplay:mte.c], [self getCharErrorDisplay:mte.expectingChar]];
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dsettag-merge.mir1 # RUN: llc -mtriple=aarch64 -mattr=+mte -run-pass=prologepilog %s -o - | FileCheck %s
4 …aarch64.settag(i8* nocapture writeonly, i64) argmemonly nounwind writeonly "target-features"="+mte"
5 define i32 @stg16_16_16_16_ret() "target-features"="+mte" {
18 define void @stg16_store_128() "target-features"="+mte" {
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DLexer.as162 var mte:MismatchedTokenException =
164 recover(mte);
165 throw mte;
183 var mte:MismatchedTokenException =
185 recover(mte); // don't really recover; just consume in lexer
186 throw mte;
245 var mte:MismatchedTokenException = MismatchedTokenException(e);
246 …msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting "+getCharErrorDisplay(mte.expec…
/external/arm-optimized-routines/string/test/
Dstrlen.c18 #define F(x, mte) {#x, x, mte}, argument
Dstrnlen.c21 #define F(x, mte) {#x, x, mte}, argument
Dmemrchr.c21 #define F(x, mte) {#x, x, mte}, argument
Dmemchr.c17 #define F(x, mte) {#x, x, mte}, argument
Dmemcpy.c16 #define F(x, mte) {#x, x, mte}, argument
Dstrrchr.c17 #define F(x, mte) {#x, x, mte}, argument
Dstrchr.c17 #define F(x, mte) {#x, x, mte}, argument
Dmemset.c16 #define F(x, mte) {#x, x, mte}, argument
Dstrchrnul.c21 #define F(x, mte) {#x, x, mte}, argument
Dstpcpy.c20 #define F(x, mte) {#x, x, mte}, argument
Dstrcpy.c16 #define F(x, mte) {#x, x, mte}, argument

123