/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
D | group-file-lexer.rb | 380 mse = MismatchedSet( nil ) 381 recover mse 382 raise mse 417 mse = MismatchedSet( nil ) 418 recover mse 419 raise mse 438 mse = MismatchedSet( nil ) 439 recover mse 440 raise mse 578 mse = MismatchedSet( nil ) [all …]
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | audio_decoder_unittest.cc | 176 void EncodeDecodeTest(size_t expected_bytes, int tolerance, double mse, in EncodeDecodeTest() argument 219 mse); in EncodeDecodeTest() 480 double mse = 1734.0; in TEST_F() local 481 EncodeDecodeTest(data_length_, tolerance, mse); in TEST_F() 506 double mse = 1931.0; in TEST_F() local 507 EncodeDecodeTest(data_length_, tolerance, mse); in TEST_F() 518 double mse = 0.0; in TEST_F() local 519 EncodeDecodeTest(2 * data_length_, tolerance, mse); in TEST_F() 531 double mse = 2.13e6; in TEST_F() local 533 EncodeDecodeTest(500, tolerance, mse, delay); in TEST_F() [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/ |
D | TestLexer.m | 98 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 99 [self recover:mse]; 100 @throw mse; 144 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 145 [self recover:mse]; 146 @throw mse; 177 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 178 [self recover:mse]; 179 @throw mse;
|
D | TestLexer.m.old | 62 …ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input]; 63 [self recover:mse]; @throw mse; 125 …ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input]; 126 [self recover:mse]; @throw mse;
|
/external/webrtc/talk/session/media/ |
D | yuvscaler_unittest.cc | 248 #define TEST_M(name, iwidth, iheight, owidth, oheight, mse) \ argument 253 EXPECT_LE(error, mse); \ 259 EXPECT_LE(error, mse); \ 265 EXPECT_LE(error, mse); \ 271 EXPECT_LE(error, mse); \ 277 EXPECT_LE(error, mse); \ 283 EXPECT_LE(error, mse); \ 289 EXPECT_LE(error, mse); \ 295 EXPECT_LE(error, mse); \ 301 EXPECT_LE(error, mse); \ [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
D | SimpleCLexer.java | 264 MismatchedSetException mse = new MismatchedSetException(null,input); in mID() local 265 recover(mse); in mID() 266 throw mse;} in mID() 288 MismatchedSetException mse = new MismatchedSetException(null,input); in mID() local 289 recover(mse); in mID() 290 throw mse;} in mID() 480 MismatchedSetException mse = new MismatchedSetException(null,input); in mWS() local 481 recover(mse); in mWS() 482 throw mse;} in mWS()
|
D | SimpleCLexer.m | 214 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 215 [self recover:mse]; 216 @throw mse; 235 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 236 [self recover:mse]; 237 @throw mse; 301 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 302 mse.c = anInt; 303 [self recover:mse]; 304 @throw mse; [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
D | SimpleCLexer.java | 264 MismatchedSetException mse = new MismatchedSetException(null,input); in mID() local 265 recover(mse); in mID() 266 throw mse;} in mID() 288 MismatchedSetException mse = new MismatchedSetException(null,input); in mID() local 289 recover(mse); in mID() 290 throw mse;} in mID() 480 MismatchedSetException mse = new MismatchedSetException(null,input); in mWS() local 481 recover(mse); in mWS() 482 throw mse;} in mWS()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/ |
D | TLexer.m | 115 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 116 [self recover:mse]; 117 @throw mse; 136 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 137 [self recover:mse]; 138 @throw mse; 198 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 199 [self recover:mse]; 200 @throw mse; 265 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; [all …]
|
/external/webrtc/webrtc/modules/audio_processing/test/ |
D | test_utils.h | 108 float mse = 0; in ComputeSNR() local 113 mse += error * error; in ComputeSNR() 117 mse /= length; in ComputeSNR() 123 if (mse > 0) in ComputeSNR() 124 snr = 10 * log10(*variance / mse); in ComputeSNR()
|
/external/libvpx/libvpx/test/ |
D | util.h | 38 double mse = static_cast<double>(sqrerr) / (width_y * height_y); in compute_psnr() local 40 if (mse > 0.0) { in compute_psnr() 41 psnr = 10 * log10(255.0 * 255.0 / mse); in compute_psnr()
|
/external/webrtc/webrtc/common_audio/ |
D | audio_converter_unittest.cc | 57 float mse = 0; in ComputeSNR() local 63 mse += error * error; in ComputeSNR() 70 mse /= length; in ComputeSNR() 75 if (mse > 0) in ComputeSNR() 76 snr = 10 * std::log10(variance / mse); in ComputeSNR()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
D | LangLexer.m | 194 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 195 [self recover:mse]; 196 @throw mse; 261 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 262 [self recover:mse]; 263 @throw mse; 314 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 315 [self recover:mse]; 316 @throw mse;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/ |
D | CombinedLexer.m | 107 …ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input]; 108 [self recover:mse]; 109 @throw mse;} 127 …ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input]; 128 [self recover:mse]; 129 @throw mse;} 244 …ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input]; 245 [self recover:mse]; 246 @throw mse;}
|
/external/doclava/src/com/google/doclava/parser/ |
D | JavaLexer.java | 431 MismatchedSetException mse = new MismatchedSetException(null,input); in mHexDigit() local 432 recover(mse); in mHexDigit() 433 throw mse;} in mHexDigit() 455 MismatchedSetException mse = new MismatchedSetException(null,input); in mLongSuffix() local 456 recover(mse); in mLongSuffix() 457 throw mse;} in mLongSuffix() 786 MismatchedSetException mse = new MismatchedSetException(null,input); in mNonIntegerNumber() local 787 recover(mse); in mNonIntegerNumber() 788 throw mse;} in mNonIntegerNumber() 806 MismatchedSetException mse = new MismatchedSetException(null,input); in mNonIntegerNumber() local [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/ |
D | Testlexer.m | 117 …ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input]; 118 [self recover:mse]; 119 @throw mse;} 183 …ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input]; 184 [self recover:mse]; 185 @throw mse;}
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
D | SymbolTableLexer.m | 354 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 355 [self recover:mse]; 356 @throw mse; 421 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 422 [self recover:mse]; 423 @throw mse; 488 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 489 [self recover:mse]; 490 @throw mse;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
D | SlimLexer.cs | 377 MismatchedNotSetException mse = (MismatchedNotSetException)e; in GetErrorMessage() 378 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage() 382 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage() 383 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | Lexer.cs | 296 MismatchedNotSetException mse = (MismatchedNotSetException)e; in GetErrorMessage() 297 …g = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecting; in GetErrorMessage() 299 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage() 300 …g = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecting; in GetErrorMessage()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
D | SimpleCLexer.m | 549 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 550 [self recover:mse]; 551 @throw mse; 570 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 571 [self recover:mse]; 572 @throw mse; 633 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 634 [self recover:mse]; 635 @throw mse; 701 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; [all …]
|
/external/webrtc/webrtc/voice_engine/ |
D | utility_unittest.cc | 97 float mse = 0; in ComputeSNR() local 102 mse += error * error; in ComputeSNR() 106 if (mse > 0) in ComputeSNR() 107 snr = 10 * log10(variance / mse); in ComputeSNR()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | Lexer.cs | 360 MismatchedNotSetException mse = (MismatchedNotSetException)e; in GetErrorMessage() 361 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage() 365 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage() 366 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | Lexer.java | 287 MismatchedNotSetException mse = (MismatchedNotSetException)e; in getErrorMessage() local 288 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting; in getErrorMessage() 291 MismatchedSetException mse = (MismatchedSetException)e; in getErrorMessage() local 292 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting; in getErrorMessage()
|
/external/libyuv/files/util/ |
D | compare.cc | 55 double mse = static_cast<double>(sum_square_err) / in main() local 57 printf(", mse %.2f", mse); in main()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/ |
D | TreeRewriteLexer.m | 96 … ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input]; 97 [self recover:mse]; 98 @throw mse;
|