HomeSort by relevance Sort by last modified time
    Searched full:testinput (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_input.py 31 class TestInput(object):
35 # TestInput objects are normally constructed by the manager and passed
46 return "TestInput('%s', timeout=%s, requires_lock=%s, reference_files=%s, should_run_pixel_tests=%s, should_add_missing_baselines%s)" % (self.test_name, self.timeout, self.requires_lock, self.reference_files, self.should_run_pixel_tests, self.should_add_missing_baselines)
  /external/chromium_org/net/websockets/
websocket_net_log_params_test.cc 33 const std::string testInput =
46 net::NetLogWebSocketHandshakeCallback(&testInput,
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 64 public String execLexer(String testRuleName, int line, String testInput, boolean isFile) throws Exception {
68 String filePath = testInput;
78 input = new ANTLRStringStream(testInput);
155 public Object execParser(String testRuleName, int line, String testInput, boolean isFile) throws Exception {
159 String filePath = testInput;
169 input = new ANTLRStringStream(testInput);
302 public Object execTreeParser(String testTreeRuleName, String testRuleName, String testInput, boolean isFile) throws Exception {
305 String filePath = testInput;
315 input = new ANTLRStringStream(testInput);
gUnitExecutor.java 183 //System.out.print(numOfTest + ". Running rule: " + rule + "; input: '" + input.testInput + "'");
230 protected gUnitTestResult runLexer(String lexerName, String testRuleName, gUnitTestInput testInput) throws Exception {
237 input = getANTLRInputStream(testInput);
306 protected gUnitTestResult runParser(String parserName, String lexerName, String testRuleName, gUnitTestInput testInput) throws Exception {
314 input = getANTLRInputStream(testInput);
437 protected gUnitTestResult runTreeParser(String parserName, String lexerName, String testRuleName, String testTreeRuleName, gUnitTestInput testInput) throws Exception {
447 input = getANTLRInputStream(testInput);
607 private CharStream getANTLRInputStream(gUnitTestInput testInput) throws IOException {
609 if ( testInput.isFile) {
610 String filePath = testInput.input
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
gUnit.g 126 String testInput = null;
131 in = new gUnitTestInput(testInput, inputIsFile, line);
135 testInput = $STRING.text.replace("\\n", "\n").replace("\\r", "\r").replace("\\t", "\t")
141 testInput = $ML_STRING.text;
146 testInput = $file.text;
  /external/pcre/dist/doc/
perltest.txt 35 The other testinput files are not suitable for feeding to perltest.pl, since
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_browsertest.js 135 var testInput = {
140 AutofillEditAddressOverlay.loadAddressComponents(testInput);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner_unittest.py 39 from webkitpy.layout_tests.models.test_input import TestInput
105 test_inputs = [TestInput(test, 6000) for test in tests]
114 runner._test_inputs = [TestInput(test_name, 6000) for test_name in test_names]
177 return TestInput(test_file, requires_lock=(test_file.startswith('http') or test_file.startswith('perf')))
manager.py 52 from webkitpy.layout_tests.models.test_input import TestInput
133 return TestInput(test_file,
  /external/chromium_org/third_party/re2/re2/testing/
tester.h 104 bool TestInput(const StringPiece& text);
exhaustive_tester.cc 136 if (!tester.TestInput(strgen_.Next())) {
tester.cc 612 bool Tester::TestInput(const StringPiece& text) {
637 return t.TestInput(text);
  /external/regex-re2/re2/testing/
tester.h 104 bool TestInput(const StringPiece& text);
exhaustive_tester.cc 136 if (!tester.TestInput(strgen_.Next())) {
tester.cc 612 bool Tester::TestInput(const StringPiece& text) {
637 return t.TestInput(text);
  /external/pcre/dist/
RunTest.bat 251 set testinput=testinput%1 variable
253 if exist %srcdir%\testdata\win%testinput% (
254 set testinput=wintestinput%1 variable
259 %pcretest% %mode% %4 %5 %6 %7 %8 %9 %srcdir%\testdata\%testinput% >%2%bits%\%testoutput%
262 echo. %pcretest% %mode% %4 %5 %6 %7 %8 %9 %srcdir%\testdata\%testinput% ^>%2%bits%\%testoutput%
NON-AUTOTOOLS-BUILD 212 (11) Run pcretest on the testinput files in the testdata directory, and check
222 testinput file. If you have a suitable Unix-like shell, the RunTest script
README 667 own man page) on each of the relevant testinput files in the testdata
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 523 * @param testinput the file to decode
527 private void decode(int testinput, float maxerror) throws IOException {
529 short[] decoded = decodeToMemory(testinput, RESET_MODE_NONE, CONFIG_MODE_NONE, -1, null);
556 if (conf == CONFIG_MODE_QUEUE && !hasAudioCsd(testinput)) {
561 short[] decoded2 = decodeToMemory(testinput, reset, conf, -1, null);
571 private boolean hasAudioCsd(int testinput) throws IOException {
575 fd = mResources.openRawResourceFd(testinput);
589 private short[] decodeToMemory(int testinput, int resetMode, int configMode,
597 AssetFileDescriptor testFd = mResources.openRawResourceFd(testinput);
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
gendata.cpp 39 struct TestInput
  /external/icu/icu4c/source/test/letest/
gendata.cpp 39 struct TestInput
  /external/pcre/dist/doc/html/
NON-AUTOTOOLS-BUILD.txt 212 (11) Run pcretest on the testinput files in the testdata directory, and check
222 testinput file. If you have a suitable Unix-like shell, the RunTest script
README.txt 667 own man page) on each of the relevant testinput files in the testdata
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
nccbtst.c 1472 static const UChar testinput[]={ 0x20ac, 0xd801, 0xdc01, 0xdc01, 0xd801, 0xffff, 0x0061,}; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
nccbtst.c 1476 static const UChar testinput[]={ 0x20ac, 0xd801, 0xdc01, 0xdc01, 0xd801, 0xffff, 0x0061,}; local
    [all...]

Completed in 950 milliseconds

1 2