Searched refs:test (Results 1 - 25 of 2784) sorted by path

1234567891011>>

/external/android-mock/livetests/com/google/android/testing/mocking/test/
H A DMockingTest.java16 package com.google.android.testing.mocking.test;
/external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DGUnitExecuteMojo.java45 * @phase test
46 * @requiresDependencyResolution test
77 * @parameter expression="${basedir}/src/test/gunit"
108 * By default we skip gUnit tests if the user requested that all testing be skipped using 'maven.test.skip'
110 * @parameter expression="${maven.test.skip}"
266 // todo : should we combine both compile and test scoped elements?
316 for ( AbstractTest test : executor.failures ) {
317 failureNames.add( scriptBaseName + "#" + test.getHeader() );
340 throw new MojoExecutionException( "Found gUnit test failures" );
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
H A DStGUnit.g69 test+
73 test
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitExecutor.java125 // Execute unit test of for parser, lexer and tree grammar
135 // Fill in the template holes with the test results
180 AbstractTest test = ts.testSuites.get(input);
186 //System.out.println("; Expecting " + test.getExpected() + "; Success?: " + test.getExpected().equals(test.getResult(result)));
189 test.setHeader(rule, lexicalRule, treeRule, numOfTest, input.line);
190 test.setActual(input.input);
191 invalids.add(test);
195 String expected = test
[all...]
/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
H A Djunit.stg47 testTreeRuleMethod(methodName,testTreeRuleName,testRuleName,test,tokenType,expecting) ::= <<
49 // gunit test on line <test.line>
50 Object retval = execTreeParser(<testTreeRuleName>, <testRuleName>, "<test.inputEscaped>", <test.isFile>);
58 testTreeRuleMethod2(methodName,testTreeRuleName,testRuleName,test,returnType,expecting) ::= <<
60 // gunit test on line <test.line>
61 <returnType> retval = (<returnType>)execTreeParser(<testTreeRuleName>, <testRuleName>, "<test.inputEscaped>", <test
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as606 * and tree parsers need to return different objects. Rather than test
/external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
H A DTestANTLRStringStream.as1 package org.antlr.runtime.test {
113 // test two-level rewind
/external/antlr/antlr-3.4/runtime/CSharp2/
H A Dantlr3.runtime.net.common.inc21 <if test="${framework::get-target-framework()=='netcf-1.0'}">
25 <if test="${framework::get-target-framework()=='net-1.1' or framework::get-target-framework()=='mono-1.0'}">
28 <if test="${not (framework::get-target-framework()=='net-1.1') and not (framework::get-target-framework()=='mono-1.0')}">
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Collections.Tests.pas6 This unit contains a skeleton test case class generated by the Test Case Wizard.
131 // Register any test cases with the test runner
H A DAntlr.Runtime.Tests.pas181 // Register any test cases with the test runner
H A DAntlr.Runtime.Tools.Tests.pas6 This unit contains a skeleton test case class generated by the Test Case Wizard.
626 // Register any test cases with the test runner
H A DAntlr.Runtime.Tree.Tests.pas6 This unit contains a skeleton test case class generated by the Test Case Wizard.
1243 Result.Add(TCommonToken.Create(I + 1,'test token ' + IntToStr(I + 1)
1274 CreateToken(1,'test token without any real context'));
1289 CreateToken(1,'test token without any real context'));
1304 CreateToken(1, 'test token without any real context'));
1312 Description = 'RewriteRuleNodeStream test';
1329 Description = 'RewriteRuleNodeStream test';
1346 NodeTest := TRewriteRuleNodeStream.Create(CreateTreeAdaptor, 'RewriteRuleNodeStream test');
1347 Token1 := CreateToken(1, 'test token without any real context');
1374 Token2 := CreateToken(2, 'test toke
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas3676 // test above then fetch
H A DAntlr.Runtime.pas2008 /// and tree parsers need to return different objects. Rather than test
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js175 if ((/KHTML/).test(ua)) {
184 if (/ Mobile\//.test(ua)) {
260 * to the other frame to test against its Array prototype. To
261 * handle this case, we test well-known array properties instead.
477 * @param o {any} the item to test
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g111 : fpdef (ASSIGN test)?
197 raise_stmt: 'raise' (test (COMMA test (COMMA test)?)?)?
219 exec_stmt: 'exec' expr ('in' test (COMMA test)?)?
222 assert_stmt: 'assert' test (COMMA test)?
234 if_stmt: 'if' test COLON suite ('elif' test COLO
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/
H A DMakefile.PL27 test => { TESTS => 't/*.t t/examples/*.t' },
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/
H A DClass.pm23 my ($test) = @_;
24 (my $class = ref $test) =~ s/^Test:://xms;
26 $test->class($class);
/external/antlr/antlr-3.4/runtime/Python/
H A Dxmlrunner.py24 """Information about a particular test.
30 def __init__(self, test, time):
31 (self._class, self._method) = test.id().rsplit(".", 1)
37 def create_success(test, time):
38 """Create a _TestInfo instance for a successful test."""
39 return _TestInfo(test, time)
42 def create_failure(test, time, failure):
43 """Create a _TestInfo instance for a failed test."""
44 info = _TestInfo(test, time)
49 def create_error(test, tim
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg302 /** How to test for failure and return from rule */
996 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
1009 /** Just like a fixed DFA edge, test the lookahead and indicate what
1038 /** Sometimes a lookahead test cannot assume that LA(k) is in a temp variable
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DC.stg1579 /** How to test for failure and return from rule */
2593 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
2610 /** Just like a fixed DFA edge, test the lookahead and indicate what
2642 /** Sometimes a lookahead test cannot assume that LA(k) is in a temp variable
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg494 /** How to test for failure and return from rule */
1370 <! get next lookahead symbol to test edges, then rewind !>
1384 /** Just like a fixed DFA edge, test the lookahead and indicate what
1413 /** Sometimes a lookahead test cannot assume that LA(k) is in a temp variable
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg475 /** How to test for failure and return from rule */
1349 <! get next lookahead symbol to test edges, then rewind !>
1363 /** Just like a fixed DFA edge, test the lookahead and indicate what
1392 /** Sometimes a lookahead test cannot assume that LA(k) is in a temp variable
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg576 /** How to test for failure and return from rule */
1454 <if(semPredState)> <! get next lookahead symbol to test edges, then rewind !>
1467 /** Just like a fixed DFA edge, test the lookahead and indicate what
1497 /** Sometimes a lookahead test cannot assume that LA(k) is in a temp variable

Completed in 340 milliseconds

1234567891011>>