HomeSort by relevance Sort by last modified time
    Searched refs:test_method (Results 1 - 21 of 21) sorted by null

  /external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py 13 def wrapper(test_method):
16 test_method(*args, **kwargs)
20 raise BrokenTest(test_method.__name__, reason)
21 replacement.__doc__ = test_method.__doc__
22 replacement.__name__ = 'XXX_' + test_method.__name__
  /external/clang/test/SemaCXX/
attr-no-sanitize-address.cpp 29 void test_method() NO_SANITIZE_ADDRESS;
attr-no-sanitize-memory.cpp 29 void test_method() NO_SANITIZE_MEMORY;
attr-no-sanitize-thread.cpp 29 void test_method() NO_SANITIZE_THREAD;
warn-thread-safety-parsing.cpp 123 void test_method() NO_THREAD_SAFETY_ANALYSIS;
247 void test_method() LOCKABLE; // \
287 void test_method() SCOPED_LOCKABLE; // \
589 void test_method() EXCLUSIVE_LOCK_FUNCTION();
664 void test_method() SHARED_LOCK_FUNCTION();
737 void test_method() EXCLUSIVE_TRYLOCK_FUNCTION(1);
814 void test_method() SHARED_TRYLOCK_FUNCTION(1);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test_suite.hpp 91 struct test_name : public F { void test_method(); }; \
96 t.test_method(); \
107 void test_name::test_method() \
125 { void test_method(); }; \
132 t.test_method(); \
142 void test_name<type_name>::test_method() \
unit_test_suite_impl.hpp 239 user_tc_method_invoker( shared_ptr<InstanceType> inst, TestMethod test_method )
240 : m_inst( inst ), m_test_method( test_method ) {}
262 make_test_case( void (UserTestCase::* test_method )(),
267 ut_detail::user_tc_method_invoker<InstanceType,UserTestCase>( user_test_case, test_method ) );
  /external/chromium_org/build/android/pylib/host_driven/
test_case.py 79 def __RunJavaTest(self, package_name, test_case, test_method):
86 test_method: Name of the test method to run (e.g. testFooBar)
91 test = '%s.%s#%s' % (package_name, test_case, test_method)
  /external/chromium_org/build/android/pylib/instrumentation/
test_jar.py 169 for test_method in self.GetTestMethods():
170 annotations_ = frozenset(self.GetTestAnnotations(test_method))
172 not self.IsHostDrivenTest(test_method)):
173 tests_missing_annotations.append(test_method)
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 45 def wrapper(test_method):
48 test_method(*args, **kwargs)
52 raise BrokenTest(test_method.__name__, reason)
53 replacement.__doc__ = test_method.__doc__
54 replacement.__name__ = 'XXX_' + test_method.__name__
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 42 def test_method(self, arg): member in class:server.TestClass
test_repr.py 289 def test_method(self): function
test_gc.py 117 def test_method(self): member in class:GCTests
test_socket.py 130 test_method = getattr(self, '_' + methodname)
132 self.clientRun, (test_method,))
    [all...]
test_urllib2.py 1287 def test_method(self): member in class:RequestTests
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 42 def test_method(self, arg): member in class:server.TestClass
test_repr.py 289 def test_method(self): function
test_gc.py 117 def test_method(self): member in class:GCTests
test_socket.py 130 test_method = getattr(self, '_' + methodname)
132 self.clientRun, (test_method,))
    [all...]
test_urllib2.py 1287 def test_method(self): member in class:RequestTests
    [all...]
  /development/testrunner/test_defs/
instrumentation_test.py 109 if options.test_method is not None:
110 test_class = "%s#%s" % (test_class, options.test_method)

Completed in 428 milliseconds