/external/webrtc/webrtc/tools/rtcbot/ |
main.js | 9 // This script loads all the test/* files into a very small context that 12 // Once all files are loaded it runs the specific test on the command line. 16 // nodejs-isms away from the test code and isolate implementation details away 20 var Test = require('./test.js'); 31 function bootstrap(test) { 34 callbacks.push(test.spawnBot.bind(test, "", bots[i])); 36 test.wait(callbacks, func.bind(test, test)) [all...] |
/external/clang/test/CXX/class.access/class.access.base/ |
p1.cpp | 16 class Test : public Base { 17 void test() { function in class:test0::Test 34 void test(Test *t) { function in namespace:test0 65 class Test : protected Base { // expected-note 6 {{declared protected here}} expected-note 8 {{constrained by protected inheritance here}} 66 void test() { function in class:test1::Test 83 void test(Test *t) { function in namespace:test1 121 class Test : private Base { // expected-note 6 {{declared private here}} \ 123 void test() { function in class:test2::Test 140 void test(Test *t) { function in namespace:test2 [all...] |
/external/clang/test/CXX/special/class.copy/ |
p18-cxx11.cpp | 52 struct Test {
|
/external/clang/test/CodeGenCXX/ |
pass-object-size.cpp | 36 void Test() { 74 void test() { function in namespace:variadic
|
debug-info-enum-class.cpp | 39 template <typename T> struct Test { 41 test = 0 member in class:A::B::PR14029::Test::Tag 43 Test() { 44 auto t = Tag::test; 48 Test<int> t;
|
/external/clang/test/CoverageMapping/ |
classtemplate.cpp | 7 class Test { 16 Test() { } // CHECK-CONSTRUCTOR: File 0, [[@LINE]]:10 -> [[@LINE]]:13 = #0 48 Test<unsigned> t; 49 t.set(Test<unsigned>::A, 5.5); 50 t.set(Test<unsigned>::T, 5.6); 51 t.set(Test<unsigned>::G, 5.7); 52 t.set(Test<unsigned>::C, 5.8);
|
/external/clang/test/SemaCXX/ |
pass-object-size.cpp | 132 void Test() {
|
return.cpp | 73 class Test 90 void Test(const VarType& value) {
|
i-c-e-cxx.cpp | 34 char Test() {
|
warn-float-conversion.cpp | 44 void Test() {
|
/external/python/cpython2/Lib/ctypes/test/ |
test_byteswap.py | 16 class Test(unittest.TestCase): 17 @unittest.skip('test disabled')
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-jitlistener/ |
llvm-jitlistener.cpp | 180 cl::ParseCommandLineOptions(argc, argv, "llvm jit event listener test utility\n"); 182 JitEventListenerTest Test; 183 Test.ProcessInput(InputFilename);
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
TestUtil.h | 35 namespace Test { 37 class AssemblerX8632TestBase : public ::testing::Test { 65 // __ is a helper macro. It allows test cases to emit X8632 assembly 106 // test will emit some instructions for performing the test. The assembled 112 // test harnesses need to ensure it does not leave anything it pushed on the 117 // This mechanism is used because the test framework needs to generate addresses 142 // the test code does not perform any arithmetic operation that writes to %rBP. 153 // test: 161 // call test$materialize_i [all...] |
X87.cpp | 13 namespace Test { 153 AssembledTest test = assemble(); \ 154 test.set##MemorySize##To(T1, OldValue1); \ 155 test.set##MemorySize##To(N1, NewValue1); \ 156 test.set##MemorySize##To(T2, OldValue2); \ 157 test.set##MemorySize##To(N2, NewValue2); \ 158 test.set##MemorySize##To(T3, OldValue3); \ 159 test.set##MemorySize##To(N3, NewValue3); \ 160 test.set##MemorySize##To(T4, OldValue4); \ 161 test.set##MemorySize##To(N4, NewValue4); [all...] |
/external/syzkaller/pkg/instance/ |
instance.go | 37 return nil, fmt.Errorf("test instances can only work with qemu/gce") 147 // Test boots numVMs VMs, tests basic kernel operation, and optionally tests the provided reproducer. 150 func (env *Env) Test(numVMs int, reproSyz, reproOpts, reproC []byte) ([]error, error) { 176 go func() { res <- inst.test() }() 196 func (inst *inst) test() error { func 262 return &TestError{Title: fmt.Sprintf("failed to copy test binary to VM: %v", err)} 266 return &TestError{Title: fmt.Sprintf("failed to copy test binary to VM: %v", err)} 269 cmd := FuzzerCmd(fuzzerBin, executorBin, "test", inst.cfg.TargetOS, inst.cfg.TargetArch, fwdAddr, 290 return fmt.Errorf("test machine failed to connect to host") 298 return &TestError{Title: fmt.Sprintf("failed to copy test binary to VM: %v", err) [all...] |
/external/tensorflow/tensorflow/python/kernel_tests/ |
matmul_op_test.py | 33 from tensorflow.python.platform import test as test_lib 40 """Simple test for matvec, which is sugar on top of matmul.""" 50 def _AddTest(test, op_name, testcase_name, fn): 51 test_name = "_".join(["test", op_name, testcase_name]) 52 if hasattr(test, test_name): 53 raise RuntimeError("Test %s defined more than once" % test_name) 54 setattr(test, test_name, test_util.deprecated_graph_mode_only(fn)) 72 def Test(self): 79 print("Built without fp16 matmul support for Cuda, running test on CPU.") 107 return Test [all...] |
/external/vixl/test/ |
test-runner.cc | 31 #include "test-runner.h" 34 vixl::Test* vixl::Test::first_ = NULL; 35 vixl::Test* vixl::Test::last_ = NULL; 37 bool vixl::Test::verbose_ = false; 40 bool vixl::Test::trace_sim_ = false; 41 bool vixl::Test::trace_reg_ = false; 42 bool vixl::Test::trace_write_ = false; 43 bool vixl::Test::trace_branch_ = false [all...] |
/art/test/807-method-handle-and-mr/src/ |
Main.java | 17 // This test was inspired by benchmarks.MicroMethodHandles.java.MicroMethodHandles. 30 class Test { 31 Test() throws Throwable { 85 Test[] tests = new Test[] { new Test(), new Test(), new Test() }; 86 for (Test test : tests) [all...] |
/art/tools/bisection_search/ |
bisection_search.py | 22 ./bisection-search.py -cp classes.dex --expected-output output Test 99 def Test(self, compiled_methods, passes_to_run=None): 110 True if test passes with given settings. False otherwise. 125 print('Test passed: {0}.'.format(res)) 129 """Get methods compiled during the test. 132 List of strings representing methods compiled during the test. 146 """Get all optimization passes ran for a method during the test. 152 List of strings representing passes ran for compiled_method during test. 246 def BinarySearch(start, end, test): 247 """Binary search integers using test function to guide the process."" [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
TestAdapter.java | 35 List<Test> tests; 38 private class Test { 42 protected Test(int instructions) { 51 this.tests = new ArrayList<Test>(); 53 this.tests.add(new Test(t)); 86 Test test = tests.get(position); local 87 if (test.mPassed) { 93 ((TextView) vg.findViewById(R.id.instructions)).setText(test.mInstructions);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/ |
Eiffel.py | 91 class Test(Eiffel):
107 class Sub(Test):
114 t = Test()
|
/external/autotest/client/site_tests/graphics_dEQP/ |
generate_controlfiles.py | 7 3) Decomposing a test into shards. Ideally shard_count is chosen such that 18 Test = namedtuple('Test', 'filter, suite, shards, time, hasty, tag, test_file, perf_failure_description') 46 Test('bvt', Suite.bvtcq, shards=1, hasty=False, time='FAST', tag='bvt', test_file=BVT_MASTER_FILE, perf_failure_description='Failures_BVT'), 47 Test('dEQP-GLES2-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles2-master', test_file=GLES2_MASTER_FILE, perf_failure_description='Failures_GLES2'), 49 #Test('dEQP-GLES2-master', Suite.bvtpb, shards=10, hasty=True, time='FAST', tag='gles2-master', test_file=GLES2_MASTER_FILE, perf_failure_description=None), 53 Test('dEQP-GLES2.stress', Suite.daily, shards=1, hasty=False, time='LONG', tag='stress', test_file=None, perf_failure_description=None), 54 Test('dEQP-GLES3.accuracy', Suite.none, shards=1, hasty=False, time='FAST', tag=None, test_file=None, perf_failure_description=None), 55 Test('dEQP-GLES3-master', Suite.daily, shards=1, hasty=False, time='LENGTHY', tag='gles3-master', test_file=GLES3_MASTER_FILE, perf_failure_description='Failures_GLES3'), 56 #Test('dEQP-GLES3-master', Suite.bvtpb, shards=10, hasty=True, time='FAST', tag='gles3-master' (…) [all...] |
/external/capstone/bindings/java/ |
Test.java | 6 public class Test {
|
/external/clang/test/Misc/ |
ast-dump-attr.cpp | 1 // RUN: %clang_cc1 -triple x86_64-pc-linux -std=c++11 -Wno-deprecated-declarations -ast-dump -ast-dump-filter Test %s | FileCheck --strict-whitespace %s 107 namespace Test { 125 auto Test = []() __attribute__((no_thread_safety_analysis)) {}; 141 struct { int Test __attribute__((deprecated)); }; 142 // CHECK: FieldDecl{{.*}}Test 'int' 148 s.Test = 1; 149 // CHECK: IndirectFieldDecl{{.*}}Test 'int'
|
/external/clang/test/Sema/ |
compound-literal.c | 19 typedef struct Test {int a;int b;} Test; 20 static Test* ll = &(Test) {0,0};
|