HomeSort by relevance Sort by last modified time
    Searched defs:Test (Results 176 - 200 of 400) sorted by null

1 2 3 4 5 6 78 91011>>

  /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...]
  /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/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
format.py 5 import lit.Test # pylint: disable=import-error
9 from libcxx.test.executor import LocalExecutor as LocalExecutor
15 Custom test format handler for use with the test format use by libc++.
18 FOO.pass.cpp - Executable test which should compile, run, and exit with
20 FOO.fail.cpp - Negative test case which is expected to fail compilation.
21 FOO.sh.cpp - A test that uses LIT's ShTest format.
45 yield lit.Test.Test(testSuite, path_in_suite + (filename,),
48 def execute(self, test, lit_config)
    [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/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_byteswap.py 16 class Test(unittest.TestCase):
test_pep3118.py 20 class Test(unittest.TestCase):
106 # machines. The test replaces '<' with '>' on big endian machines.
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_byteswap.py 16 class Test(unittest.TestCase):
test_pep3118.py 20 class Test(unittest.TestCase):
106 # machines. The test replaces '<' with '>' on big endian machines.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_byteswap.py 16 class Test(unittest.TestCase):
test_pep3118.py 20 class Test(unittest.TestCase):
106 # machines. The test replaces '<' with '>' on big endian machines.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_byteswap.py 16 class Test(unittest.TestCase):
test_pep3118.py 20 class Test(unittest.TestCase):
106 # machines. The test replaces '<' with '>' on big endian machines.
  /art/runtime/gc/accounting/
bitmap.h 171 ALWAYS_INLINE bool Test(size_t addr) const {
space_bitmap-inl.h 46 DCHECK(Test(obj));
50 DCHECK(Test(obj));
55 inline bool SpaceBitmap<kAlignment>::Test(const mirror::Object* obj) const {
71 if (Test(obj)) {
181 DCHECK_EQ(Test(obj), kSetBit);
  /cts/tools/testng/
gen-test-list-xml.py 18 # Generate a CTS test XML file from a text file containing every single class#method per line
33 # <Test name="methodNameA" />
34 # <Test name="methodNameB" />
166 tst = Test(name=method_name)
170 class Test(BaseNode):
172 super(Test, self).__init__(name)
197 parser = argparse.ArgumentParser(description='Process a test methods list file to generate CTS test xml.')
205 parser.add_argument('--test-type', help="testType (default testNGDeviceTest)",
212 help='name of the cts test file (stdin by default)'
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 5 require 'antlr3/test/core-extensions'
6 require 'antlr3/test/grammar'
7 require 'antlr3/test/call-stack'
9 require 'test/unit'
13 module Test
76 # quickly as test cases are run, instead of waiting a few minutes
88 # anonymous subclasses, of the actual test class, which messes up the
89 # assumptions made in the test code. Grammars are stored in @grammars belonging
90 # to the test class, so in 1.9, this method is called with @grammars = {}
98 # An index of grammar file objects created in the test clas
    [all...]
grammar.rb 5 require 'antlr3/test/core-extensions'
6 require 'antlr3/test/call-stack'
16 module Test
29 dependencies << path if test( ?f, path )
36 not test( ?f, target ) or
37 dependencies.any? { |dep| test( ?>, dep, target ) }
55 GLOBAL_DEPENDENCIES << path if test( ?f, path )
193 if test( ?f, target )
221 test( ?f, f ) and File.delete( f )
307 test( ?d, output_directory ) or Dir.mkdir( output_directory
    [all...]
  /external/autotest/client/site_tests/graphics_PiglitBVT/
generate_scripts.py 28 echo "+ Running test [$name] of expected runtime $time sec: [$command]"\n\
102 Write the beginning of the test script to f.
121 Append the summary to the test script f with a required pass count.
161 # Define a Test data structure containing the command line and runtime.
162 Test = namedtuple('Test', 'command time passing_count not_passing_count')
166 Figures out for each test how often is passed/failed, the command line and
171 for test in log_dict[main_file]['tests']:
172 # Initialize for all known test names to zero stats.
173 statistics[test] = Test(None, 0.0, 0, 0
    [all...]
  /external/clang/test/CXX/except/except.spec/
p14.cpp 131 struct Test {
  /external/clang/test/CXX/special/class.copy/
p12-0x.cpp 192 struct Test : HasImplicitlyDeletedCopyCtor {
193 Test(const Test&) = default;
194 Test(Test&&) = default;
197 static_assert(__has_trivial_copy(Test), "");
199 static_assert(!__is_trivially_constructible(Test, const Test &), "");
201 static_assert(!__is_trivially_constructible(Test, Test &&), "")
    [all...]
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 89 struct Test {
  /external/clang/test/SemaCXX/
warn-thread-safety-verbose.cpp 44 class Test {
  /external/clang/test/SemaTemplate/
dependent-expr.cpp 6 void Test(Iterator it) {
67 template <class _CharT> int test(_CharT t) function in namespace:PR8795
83 // Regression test for crasher in r194540.

Completed in 1593 milliseconds

1 2 3 4 5 6 78 91011>>