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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/
TestRunner.sh 2 # Deprecated, use 'llvm-lit'.
4 echo "warning: '$0' is deprecated, use 'llvm-lit' instead."
5 exec llvm-lit "$@"
  /external/swiftshader/third_party/LLVM/test/
TestRunner.sh 2 # Deprecated, use 'llvm-lit'.
4 echo "warning: '$0' is deprecated, use 'llvm-lit' instead."
5 exec llvm-lit "$@"
lit.site.cfg.in 15 config.llvm_tools_dir = config.llvm_tools_dir % lit.params
18 lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
21 lit.load_config(config, "@LLVM_SOURCE_DIR@/test/lit.cfg")
  /external/llvm/utils/lit/
lit.py 4 import lit
5 lit.main()
setup.py 1 import lit
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/swiftshader/third_party/LLVM/utils/lit/
lit.py 4 import lit
5 lit.main()
setup.py 1 import lit
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/clang/test/
TestRunner.sh 9 # Find 'lit', assuming standard layout.
10 lit=$AbsDir/../../../utils/lit/lit.py
12 # Dispatch to lit.
13 $lit "$@"
  /external/swiftshader/third_party/LLVM/utils/llvm-lit/
Makefile 1 ##===- utils/llvm-lit/Makefile -----------------------------*- Makefile -*-===##
14 all:: $(ToolDir)/llvm-lit
16 $(ToolDir)/llvm-lit: llvm-lit.in Makefile $(ToolDir)/.dir
17 $(Echo) "Creating 'llvm-lit' script..."
18 $(Verb)$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tmp
19 $(Verb)$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> lit.tmp
20 $(Verb)sed -f lit.tmp $< > $@
22 $(Verb)rm -f lit.tmp
llvm-lit.in 10 # Make sure we can find the lit package.
11 sys.path.append(os.path.join(llvm_source_root, 'utils', 'lit'))
18 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
21 clang_site_config = os.path.join(llvm_obj_root, 'tools', 'clang', 'test', 'lit.site.cfg')
26 import lit
27 lit.main(builtin_parameters)
  /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
11 return lit.TestRunner.executeShTest(test, litConfig,
  /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/tests/
unittest-adaptor.py 1 # Check the lit adaption to run under unittest.
12 import lit
13 import lit.discovery
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/spirv-llvm/test/
run-lit-tests.sh 3 LIT_PATH=$ANDROID_BUILD_TOP/external/spirv-llvm/test/llvm-lit
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
26 lit.main(builtin_parameters)
  /external/swiftshader/third_party/LLVM/test/Unit/
lit.site.cfg.in 15 config.llvm_tools_dir = config.llvm_tools_dir % lit.params
16 config.llvm_build_mode = config.llvm_build_mode % lit.params
19 lit.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
22 lit.load_config(config, "@LLVM_SOURCE_DIR@/test/Unit/lit.cfg")
  /frameworks/rs/rsov/compiler/tests/
llvm-lit 12 # Make sure we can find the lit package.
13 sys.path.append(os.path.join(llvm_source_root, 'utils', 'lit'))
18 'llvm_site_config' : os.path.join('./', 'lit.site.cfg')
22 import lit
23 lit.main(builtin_parameters)
run-lit-tests.sh 5 LIT_PATH=$current_dir/llvm-lit
  /external/syslinux/lzo/src/
lzo1x_oo.ch 88 lzo_uint lit = 0;
124 lit = t + 3;
144 lit = 0;
160 assert(lit >= 1 && lit <= 3);
161 assert(litp == ip - 2 - lit - 2);
162 assert((lzo_uint)(*litp & 3) == lit);
165 if (nl == 0 && lit == 1 && ip[0] >= 16)
169 lit += 2;
170 *litp = LZO_BYTE((*litp & ~3) | 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
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
  /prebuilts/go/darwin-x86/src/regexp/syntax/
parse_test.go 21 {`a`, `lit{a}`},
22 {`a.`, `cat{lit{a}dot{}}`},
23 {`a.b`, `cat{lit{a}dot{}lit{b}}`},
25 {`a.b.c`, `cat{lit{a}dot{}lit{b}dot{}lit{c}}`},
27 {`a|^`, `alt{lit{a}bol{}}`},
29 {`(a)`, `cap{lit{a}}`},
30 {`(a)|b`, `alt{cap{lit{a}}lit{b}}`}
    [all...]

Completed in 422 milliseconds

1 2 3 4 5 6 7 8 91011>>