HomeSort by relevance Sort by last modified time
    Searched defs:lit (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/llvm/utils/lit/
lit.py 4 import lit namespace
5 lit.main()
setup.py 1 import lit namespace
6 name = "lit",
7 version = lit.__version__,
9 author = lit.__author__,
10 author_email = lit.__email__,
17 *lit*
23 *lit* is a portable tool for executing LLVM and Clang style test suites,
24 summarizing their results, and providing indication of failures. *lit* is
41 The official *lit* documentation is in the man page, available online at the LLVM
42 Command Guide: http://llvm.org/cmds/lit.html
    [all...]
  /external/llvm/utils/lit/tests/
unittest-adaptor.py 1 # Check the lit adaption to run under unittest.
12 import lit namespace
13 import lit.discovery namespace
16 unittest_suite = lit.discovery.load_test_suite([input_path])
  /frameworks/compile/libbcc/tests/debuginfo/
llvm-lit 14 # Make sure we can find the lit package.
15 sys.path.append(os.path.join(llvm_source_root, 'utils', 'lit'))
21 'lit.site.cfg')
25 import lit namespace
26 lit.main(builtin_parameters)
  /external/llvm/utils/llvm-lit/
llvm-lit.in 10 # Make sure we can find the lit package.
11 sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
17 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
24 os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
28 os.path.join(clang_tools_extra_obj_root, 'test', 'lit.site.cfg')
31 import lit namespace
32 lit.main(builtin_parameters)
  /external/llvm/utils/lit/lit/
TestFormats.py 5 import lit.Test namespace
6 import lit.TestRunner namespace
7 import lit.Util namespace
31 lines = lit.Util.capture([path, '--gtest_list_tests'],
67 yield lit.Test.Test(testSuite, testPath, localConfig)
104 return lit.Test.PASS, ''
106 out, err, exitCode = lit.TestRunner.executeCommand(
110 return lit.Test.PASS,''
112 return lit.Test.FAIL, out + err
130 yield lit.Test.Test(testSuite, path_in_suite + (filename,)
    [all...]
LitConfig.py 4 import lit.Test namespace
5 import lit.TestFormats namespace
6 import lit.TestingConfig namespace
7 import lit.Util namespace
10 """LitConfig - Configuration data for a 'lit' test runner instance, shared
14 files, it is always passed in as the global variable 'lit' so that
20 Test = lit.Test
23 formats = lit.TestFormats
26 util = lit.Util
47 self.config_prefix = config_prefix or 'lit'
    [all...]
TestRunner.py 11 import lit.ShUtil as ShUtil namespace
12 import lit.Test as Test namespace
13 import lit.Util as Util namespace
ShUtil.py 4 import lit.Util namespace
5 from lit.ShCommands import Command, Pipeline, Seq
78 lit.Util.warning(
96 lit.Util.warning(
108 lit.Util.warning("missing quote character in %r" % self.data)
main.py 4 lit - LLVM Integrated Tester.
6 See lit.pod for more information.
12 import lit.ProgressBar namespace
13 import lit.LitConfig namespace
14 import lit.Test namespace
15 import lit.Util namespace
17 import lit.discovery namespace
131 result = lit.Test.UNRESOLVED
175 metavar="NAME", help="Prefix for 'lit' config files",
238 help="Enable debugging (for 'lit' development)"
    [all...]
  /external/oprofile/libpp/
locate_images.cpp 42 list<string>::const_iterator lit = file_list.begin(); local
44 for (; lit != lend; ++lit) {
45 value_type v(op_basename(*lit), op_dirname(*lit));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractListTest.java 101 ListIterator lit = list.listIterator(); local
102 assertTrue("Should not have previous", !lit.hasPrevious());
103 assertTrue("Should have next", lit.hasNext());
104 tempValue = (Integer) lit.next();
107 tempValue = (Integer) lit.previous();
149 ListIterator lit = sList.listIterator(); local
150 lit.add(new Object());
151 lit.next();
152 lit.remove();
153 lit.next()
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8Test.java 143 ByteString lit = ByteString.copyFrom(realBytes); local
144 ByteString sub = lit.substring(0, bytes.length);
145 assertTrue(not ^ lit.isValidUtf8());
148 RopeByteString.newInstanceForTest(ByteString.EMPTY, lit),
150 RopeByteString.newInstanceForTest(lit, ByteString.EMPTY),
152 RopeByteString.newInstanceForTest(sub, lit)
  /external/chromium_org/tools/gn/
parser_unittest.cc 34 const LiteralNode* lit = node->AsLiteral(); local
35 if (!lit)
37 return lit->value().value() == val;
  /external/liblzf/
lzf_c.c 128 int lit; local
137 lit = 0; op++; /* start run */
168 if (op - !lit + 3 + 1 >= out_end) /* second the exact but rare test */
171 op [- lit - 1] = lit - 1; /* stop run */
172 op -= !lit; /* undo run if length is zero */
221 lit = 0; op++; /* start run */
262 lit++; *op++ = *ip++;
264 if (expect_false (lit == MAX_LIT))
266 op [- lit - 1] = lit - 1; /* stop run *
    [all...]
  /external/liblzf/src/org/liblzf/
CLZF.java 171 int lit = 0; local
195 if (oidx + lit + 1 + 3 >= out_len)
202 if (lit!=0)
204 out_data[oidx++] = (byte)(lit - 1);
205 lit = -lit;
207 out_data[oidx++] = in_data[iidx+lit];
208 while ((++lit)!=0);
243 lit++;
246 if (lit == MAX_LIT
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractListTest.java 100 ListIterator lit = list.listIterator(); local
101 assertTrue("Should not have previous", !lit.hasPrevious());
102 assertTrue("Should have next", lit.hasNext());
103 tempValue = (Integer) lit.next();
106 tempValue = (Integer) lit.previous();
141 ListIterator lit = sList.listIterator(); local
142 lit.add(new Object());
143 lit.next();
144 lit.remove();
145 lit.next()
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-defaulted-functions.cpp 51 struct lit { constexpr lit() {} }; function in struct:lit
52 S<lit> s_lit; // ok
  /external/openfst/src/include/fst/extensions/pdt/
replace.h 154 typename unordered_map<Label, size_t>::const_iterator lit = local
156 if (lit != label2id.end()) {
157 size_t nfst_id = lit->second;
  /external/stlport/test/unit/
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]
  /ndk/tests/device/test-stlport/unit/
alg_test.cpp 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); local
141 CPPUNIT_ASSERT( lit != lint.end() );
142 CPPUNIT_ASSERT( *(lit++) == 3 );
143 CPPUNIT_ASSERT( *(lit++) == 3 );
144 CPPUNIT_ASSERT( *lit == 3 );
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); local
174 CPPUNIT_ASSERT( lit != lint.end() );
175 CPPUNIT_ASSERT( *(lit++) > 2 );
176 CPPUNIT_ASSERT( *(lit++) > 2 );
177 CPPUNIT_ASSERT( *lit > 2 )
    [all...]
list_test.cpp 183 list<int>::iterator lit; local
184 lit = l.erase(l.begin());
185 CPPUNIT_ASSERT( *lit == 1 );
187 lit = l.erase(l.begin(), --l.end());
188 CPPUNIT_ASSERT( *lit == 3 );
202 list<int>::iterator lit(l.begin());
204 CPPUNIT_ASSERT( lit != l.end() );
205 CPPUNIT_ASSERT( *(lit++) == 1 );
207 CPPUNIT_ASSERT( lit == l.end() );
210 lit = l.begin()
    [all...]

Completed in 6560 milliseconds

1 2 3