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

1 2 3 4 5 6 7 8 9

  /external/llvm/test/
TestRunner.sh 2 # Deprecated, use 'llvm-lit'.
4 echo "warning: '$0' is deprecated, use 'llvm-lit' instead."
5 exec llvm-lit "$@"
Makefile 49 # Force creation of Clang's lit.site.cfg.
51 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/test lit.site.cfg Unit/lit.site.cfg
58 # Force creation of Clang Tools' lit.site.cfg.
60 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/tools/extra/test lit.site.cfg Unit/lit.site.cfg
67 # Force creation of lld's lit.site.cfg.
69 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/lld/test lit.site.cfg Unit/lit.site.cfg
76 # Force creation of Polly's lit.site.cfg
    [all...]
  /external/llvm/utils/lit/
lit.py 4 import lit namespace
5 lit.main()
setup.py 1 import lit namespace
13 name = "lit",
14 version = lit.__version__,
16 author = lit.__author__,
17 author_email = lit.__email__,
24 *lit*
30 *lit* is a portable tool for executing LLVM and Clang style test suites,
31 summarizing their results, and providing indication of failures. *lit* is
48 The official *lit* documentation is in the man page, available online at the LLVM
49 Command Guide: http://llvm.org/cmds/lit.html
    [all...]
  /external/clang/test/
TestRunner.sh 9 # Find 'lit', assuming standard layout.
10 lit=$AbsDir/../../../utils/lit/lit.py
12 # Dispatch to lit.
13 $lit "$@"
Makefile 11 # 'lit' wants objdir paths, so it will pick up the lit.site.cfg.
26 LIT_ARGS := --param clang_site_config=$(PROJ_OBJ_DIR)/lit.site.cfg
32 all:: lit.site.cfg Unit/lit.site.cfg
34 @ $(PYTHON) $(LLVM_SRC_ROOT)/utils/lit/lit.py \
39 lit.site.cfg: FORCE
40 @echo "Making Clang 'lit.site.cfg' file..."
41 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tm
    [all...]
  /external/llvm/utils/llvm-lit/
Makefile 1 ##===- utils/llvm-lit/Makefile -----------------------------*- Makefile -*-===##
14 # llvm-lit needs suffix.py for multiprocess to find a main module.
19 all:: $(ToolDir)/llvm-lit$(Suffix)
21 $(ToolDir)/llvm-lit$(Suffix): llvm-lit.in Makefile $(ToolDir)/.dir
22 $(Echo) "Creating 'llvm-lit' script..."
23 $(Verb)$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tmp
24 $(Verb)$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> lit.tmp
25 $(Verb)sed -f lit.tmp $< > $@
27 $(Verb)rm -f lit.tm
    [all...]
  /frameworks/compile/slang/lit-tests/
run-lit-tests.sh 3 LIT_PATH=$ANDROID_BUILD_TOP/frameworks/compile/libbcc/tests/debuginfo/llvm-lit
4 TESTS=$ANDROID_BUILD_TOP/frameworks/compile/slang/lit-tests
  /external/llvm/utils/lit/lit/formats/
__init__.py 2 from lit.formats.base import TestFormat, FileBasedTest, OneCommandPerFileTest
3 from lit.formats.googletest import GoogleTest
4 from lit.formats.shtest import ShTest
shtest.py 3 import lit.TestRunner namespace
11 return lit.TestRunner.executeShTest(test, litConfig,
  /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])
  /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...]
  /external/llvm/
android_test.sh 3 # Android-specific configuration details are kept in test/lit.site.cfg
20 python ./utils/lit/lit.py -s -v ./test
  /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)
  /frameworks/compile/libbcc/tests/
run-lit-tests.sh 3 LIT_PATH=$ANDROID_BUILD_TOP/frameworks/compile/libbcc/tests/debuginfo/llvm-lit
  /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/libcxx/test/libcxx/android/
adb.py 1 import lit.util # pylint: disable=import-error namespace
15 out, err, exit_code = lit.util.executeCommand(cmd)
22 out, err, exit_code = lit.util.executeCommand(cmd)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/
adb.py 1 import lit.util # pylint: disable=import-error namespace
15 out, err, exit_code = lit.util.executeCommand(cmd)
22 out, err, exit_code = lit.util.executeCommand(cmd)
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
prettify.css 7 .lit { color: #066; }
  /external/libcxx/
ndk-test.sh 4 # lit.site.cfg in the test/ directory it is impossible to tell LIT to use
19 lit -sv $* .
  /external/libcxx/test/libcxx/test/
format.py 5 import lit.Test # pylint: disable=import-error namespace
6 import lit.TestRunner # pylint: disable=import-error namespace
7 import lit.util # pylint: disable=import-error namespace
21 FOO.sh.cpp - A test that uses LIT's ShTest format.
32 # TODO: Move this into lit's FileBasedTest
45 yield lit.Test.Test(testSuite, path_in_suite + (filename,),
64 return (lit.Test.UNSUPPORTED,
65 "A lit.local.cfg marked this unsupported")
67 res = lit.TestRunner.parseIntegratedTestScript(
71 if isinstance(res, lit.Test.Result)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
format.py 5 import lit.Test # pylint: disable=import-error namespace
6 import lit.TestRunner # pylint: disable=import-error namespace
7 import lit.util # pylint: disable=import-error namespace
21 FOO.sh.cpp - A test that uses LIT's ShTest format.
32 # TODO: Move this into lit's FileBasedTest
45 yield lit.Test.Test(testSuite, path_in_suite + (filename,),
64 return (lit.Test.UNSUPPORTED,
65 "A lit.local.cfg marked this unsupported")
67 res = lit.TestRunner.parseIntegratedTestScript(
71 if isinstance(res, lit.Test.Result)
    [all...]
  /external/liblzf/cs/
CLZF.cs 171 int lit = 0;
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...]
  /dalvik/docs/
prettify.css 7 .lit { color: #066; }
21 .lit { color: #044; }
  /external/llvm/utils/lit/utils/
check-coverage 5 # Expect to be run from the parent lit directory.
6 if [ ! -f setup.py ] || [ ! -d lit ]; then
7 printf 1>&2 "%s: expected to be run from base lit directory\n" "$prog"
36 lit -sv --param check-coverage=1 "$@"

Completed in 803 milliseconds

1 2 3 4 5 6 7 8 9