/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | Lexer.cs | 160 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()
|
D | BaseRecognizer.cs | 295 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/ |
D | SlimLexer.cs | 278 … 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/ |
D | Android.bp | 107 "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/ |
D | Lexer.cs | 216 … 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()
|
D | BaseRecognizer.cs | 263 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/ |
D | Lexer.java | 185 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()
|
D | BaseRecognizer.java | 234 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/ |
D | Lexer.js | 125 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;
|
D | BaseRecognizer.js | 294 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/ |
D | context_mgmt.c | 149 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/ |
D | Lexer.m | 236 …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/ |
D | settag-merge.mir | 1 # 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/ |
D | Lexer.as | 162 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/ |
D | strlen.c | 18 #define F(x, mte) {#x, x, mte}, argument
|
D | strnlen.c | 21 #define F(x, mte) {#x, x, mte}, argument
|
D | memrchr.c | 21 #define F(x, mte) {#x, x, mte}, argument
|
D | memchr.c | 17 #define F(x, mte) {#x, x, mte}, argument
|
D | memcpy.c | 16 #define F(x, mte) {#x, x, mte}, argument
|
D | strrchr.c | 17 #define F(x, mte) {#x, x, mte}, argument
|
D | strchr.c | 17 #define F(x, mte) {#x, x, mte}, argument
|
D | memset.c | 16 #define F(x, mte) {#x, x, mte}, argument
|
D | strchrnul.c | 21 #define F(x, mte) {#x, x, mte}, argument
|
D | stpcpy.c | 20 #define F(x, mte) {#x, x, mte}, argument
|
D | strcpy.c | 16 #define F(x, mte) {#x, x, mte}, argument
|