/external/chromium_org/ppapi/generators/ |
idl_generator.py | 239 def Test(): 263 print 'Generator test: Pass' 268 if not args: return Test() 276 GeneratorReleaseTest('Test Gen', 'testgen', 'Generator Class Test.')
|
/external/chromium_org/third_party/re2/re2/testing/ |
parse_test.cc | 5 // Test parse.cc, dump.cc, and tostring.cc. 9 #include "util/test.h" 16 struct Test { 27 static Test tests[] = { 111 // Test precedences 117 // Test flattening. 124 // Test Perl quoted literals 130 // Test Perl \A and \z 140 // Test named captures 201 void TestParse(const Test* tests, int ntests, Regexp::ParseFlags flags [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
low_level_alloc_unittest.cc | 31 // A test for low_level_alloc.cc 81 static void Test(bool use_new_arena, bool call_malloc_hook, int n) { 176 Test(false, false, 50000); 183 Test(true, call_hooks, 15000);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
low_level_alloc_unittest.cc | 31 // A test for low_level_alloc.cc 81 static void Test(bool use_new_arena, bool call_malloc_hook, int n) { 176 Test(false, false, 50000); 183 Test(true, call_hooks, 15000);
|
/external/chromium_org/tools/grit/grit/format/policy_templates/ |
policy_template_generator_unittest.py | 23 '''Executes a test case. 28 Notice: Plain comments are used in test methods instead of docstrings, 30 test output. 35 writer: A writer used for this test. It is usually derived from 54 writer.Test() 58 # Test the sequence of invoking the basic PolicyWriter operations, 72 def Test(self): 79 # Test that empty policy groups are not passed to the writer. 97 def Test(self): 102 # Test that policy groups are passed to the writer in the correct order [all...] |
/external/clang/test/CodeGenCXX/ |
debug-info-enum-class.cpp | 18 template <typename T> struct Test { 20 test = 0 member in class:A::B::PR14029::Test::Tag 22 Test() { 23 auto t = Tag::test; 27 Test<int> t;
|
/external/clang/test/Sema/ |
compound-literal.c | 19 typedef struct Test {int a;int b;} Test; 20 static Test* ll = &(Test) {0,0};
|
/external/clang/test/SemaCXX/ |
i-c-e-cxx.cpp | 34 char Test() {
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/ |
attr.py | 13 def __init__(self, test, msg): 15 self.test = test 17 return '\'%s\' - %s' % (self.test.path, self.msg) 20 def __init__(self, test): 21 self.test = test 23 return '\'%s\'' % self.test.path 109 # Test file description needs to have following sections: 120 class Test(object) [all...] |
/external/lldb/include/lldb/Core/ |
Flags.h | 142 /// Test if all bits in \a mask are 1 in the current flags 155 /// Test one or more flags. 168 /// Test a single flag bit. 174 Test (ValueType bit) const 180 /// Test if all bits in \a mask are clear. 199 /// Test a single flag bit to see if it is clear (zero).
|
/external/lldb/scripts/ |
buildbot.py | 117 def Test(self): 119 os.chdir("lldb/test") 132 #self.Test() 136 parser = argparse.ArgumentParser(description="Try to build LLDB/LLVM/Clang and run the full test suite.")
|
/external/lldb/test/unittest2/test/ |
test_runner.py | 4 from unittest2.test.support import LoggingResult, OldTestResult 22 class Test(unittest2.TestCase): 30 runner.run(Test('testFoo')) 36 class Test(unittest2.TestCase): 100 # StringIO objects never compare equal, a cheap test instead. 118 class Test(unittest2.TestCase): 124 # test result objects 125 runner.run(Test('testFoo'))
|
test_unittest2_with.py | 4 from unittest2.test.support import OldTestResult, catch_warnings 87 def assertOldResultWarning(self, test, failures): 90 test.run(result) 96 class Test(unittest2.TestCase): 109 test = Test(test_name) variable in class:TestWith.test_old_testresult.Test 110 self.assertOldResultWarning(test, int(not should_pass)) 113 class Test(unittest2.TestCase): 118 self.assertOldResultWarning(Test('testFoo'), 0) 121 class Test(unittest2.TestCase) [all...] |
/external/llvm/tools/llvm-jitlistener/ |
llvm-jitlistener.cpp | 198 cl::ParseCommandLineOptions(argc, argv, "llvm jit event listener test utility\n"); 200 JitEventListenerTest Test; 202 Test.ProcessInput(InputFilename);
|
/external/llvm/utils/lit/lit/ |
Test.py | 3 # Test result codes. 6 """Test result codes.""" 34 # Test metric values. 50 Convert this metric to content suitable for serializing in the JSON test 75 # Test results. 78 """Wrapper for the results of executing an individual test.""" 83 # The test output. 85 # The wall timing to execute the test, if timing. 87 # The metrics reported by this test. 94 Attach a test metric to the test result, with the given name and list o [all...] |
TestRunner.py | 8 import lit.Test as Test 236 def executeScriptInternal(test, litConfig, tmpBase, commands, cwd): 241 test.config.pipefail).parse()) 243 return lit.Test.Result(Test.FAIL, "shell parser error on: %r" % ln) 251 exitCode = executeShCmd(cmd, test.config, cwd, results) 266 def executeScript(test, litConfig, tmpBase, commands, cwd): 281 if test.config.pipefail: 300 env=test.config.environment [all...] |
main.py | 14 import lit.Test 35 def update(self, test): 39 update_incremental_cache(test) 43 test.getFullName()) 45 if not test.result.code.isFailure and \ 52 # Show the test result line. 53 test_name = test.getFullName() 54 print('%s: %s (%d of %d)' % (test.result.code.name, test_name, 57 # Show the test failure output, if requested. 58 if test.result.code.isFailure and self.opts.showOutput [all...] |
/external/regex-re2/re2/testing/ |
parse_test.cc | 5 // Test parse.cc, dump.cc, and tostring.cc. 9 #include "util/test.h" 16 struct Test { 27 static Test tests[] = { 111 // Test precedences 117 // Test flattening. 124 // Test Perl quoted literals 130 // Test Perl \A and \z 140 // Test named captures 201 void TestParse(const Test* tests, int ntests, Regexp::ParseFlags flags [all...] |
/external/stlport/test/unit/ |
equal_test.cpp | 67 struct Test { 69 Test(); 72 Test(int val) : value(val) {} 79 bool operator < (const Test& v1, int v2) 82 bool operator < (int v1, const Test& v2) 86 bool operator < (const Test& v1, const Test& v2) 105 vector<Test> tv; 106 vector<Test>::iterator it; 107 pair<vector<Test>::iterator, vector<Test>::iterator> p [all...] |
/external/vixl/tools/ |
test.py | 43 '''This tool runs each test reported by $CCTEST --list (and filtered as 44 specified). A summary will be printed, and detailed test output will be 70 # A class representing an individual test. 71 class Test: 82 # Run the test. 83 # Use a thread to be able to control the test. 95 # Get the output and return status of the test. 121 # Scan matching tests and return a test manifest. 130 return map(Test, names) 146 for test in manifest [all...] |
/frameworks/base/tests/backup/src/com/android/backuptest/ |
BackupTestActivity.java | 57 Test[] mTests = new Test[] { 58 new Test("Show File") { 77 new Test("Append to File") { 93 new Test("Clear File") { 107 new Test("Poke") { 112 new Test("Show Shared Pref") { 121 new Test("Increment Shared Pref") { 131 new Test("Backup Helpers") { 153 new Test("Restore Helpers") [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
equal_test.cpp | 67 struct Test { 69 Test(); 72 Test(int val) : value(val) {} 79 bool operator < (const Test& v1, int v2) 82 bool operator < (int v1, const Test& v2) 86 bool operator < (const Test& v1, const Test& v2) 105 vector<Test> tv; 106 vector<Test>::iterator it; 107 pair<vector<Test>::iterator, vector<Test>::iterator> p [all...] |
/ndk/tests/device/test-stlport/unit/ |
equal_test.cpp | 67 struct Test { 69 Test(); 72 Test(int val) : value(val) {} 79 bool operator < (const Test& v1, int v2) 82 bool operator < (int v1, const Test& v2) 86 bool operator < (const Test& v1, const Test& v2) 105 vector<Test> tv; 106 vector<Test>::iterator it; 107 pair<vector<Test>::iterator, vector<Test>::iterator> p [all...] |
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
Test.java | 35 public class Test extends Dicttool.Command { 45 public static final String COMMAND = "test"; 59 public Test() { 62 if (m.getName().startsWith("test") && Void.TYPE == m.getReturnType() 73 "test [-s seed] [-m maxUnigrams] [-n] [testName...]\n" 77 + "Test list is:\n"); 117 // Some of the test classes expose a two-argument constructor, taking a long as a 118 // seed for Random, and an int for a vocabulary size to test the dictionary with. They
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_byteswap.py | 16 class Test(unittest.TestCase):
|