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

1 2 3

  /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/CodeGenCXX/
exceptions-seh-filter-captures.cpp 36 void test_method(void);
39 void S::test_method() { function in class:S
48 // CHECK-LABEL: define void @"\01?test_method@S@@QEAAXXZ"(%struct.S* %this)
53 // CHECK-LABEL: define internal i32 @"\01?filt$0@0@test_method@S@@"(i8* %exception_pointers, i8* %frame_pointer)
54 // CHECK: %[[fp:[^ ]*]] = call i8* @llvm.x86.seh.recoverfp(i8* bitcast (void (%struct.S*)* @"\01?test_method@S@@QEAAXXZ" to i8*), i8* %frame_pointer)
55 // CHECK: %[[l1_i8:[^ ]*]] = call i8* @llvm.localrecover(i8* bitcast (void (%struct.S*)* @"\01?test_method@S@@QEAAXXZ" to i8*), i8* %[[fp]], i32 0)
  /development/testrunner/test_defs/
gtest.py 54 test_method = "*"
57 if options.test_method is not None:
58 test_method = options.test_method.lstrip()
60 if test_class != "*" or test_method != "*":
61 filter_arg = "--gtest_filter=%s.%s" % (test_class, test_method)
instrumentation_test.py 109 if options.test_method is not None:
110 test_class = "%s#%s" % (test_class, options.test_method)
  /external/clang/test/SemaCXX/
attr-no-sanitize-address.cpp 31 void test_method() NO_SANITIZE_ADDRESS;
attr-no-sanitize-memory.cpp 31 void test_method() NO_SANITIZE_MEMORY;
attr-no-sanitize-thread.cpp 31 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; // \
591 void test_method() EXCLUSIVE_LOCK_FUNCTION();
666 void test_method() SHARED_LOCK_FUNCTION();
739 void test_method() EXCLUSIVE_TRYLOCK_FUNCTION(1);
816 void test_method() SHARED_TRYLOCK_FUNCTION(1);
    [all...]
  /external/tensorflow/tensorflow/contrib/py2tf/impl/
api_test.py 49 def test_method(self, x, s, a): member in class:ApiTest.test_decorator_recurses.TestClass
56 x = tc.test_method(
69 def test_method(self, x, s, a): member in class:ApiTest.test_decorator_does_not_recurse.TestClass
76 x = tc.test_method(
90 def test_method(self, x, s, a): member in class:ApiTest.test_decorator_calls_converted.TestClass
97 x = tc.test_method(
113 def test_method(self, x, s, a): member in class:ApiTest.test_decorator_calls_decorated.TestClass
120 x = tc.test_method(
135 def test_method(self, x, s, a): member in class:ApiTest.test_convert_call_site_decorator.TestClass
142 x = tc.test_method(
155 def test_method(self, x, s, a): member in class:ApiTest.test_graph_ready_call_site_decorator.TestClass
    [all...]
  /external/protobuf/python/google/protobuf/internal/
_parameterized.py 194 def __init__(self, test_method, testcases, naming_type):
203 test_method: The decorated test method.
208 self._test_method = test_method
219 test_method = self._test_method
223 @functools.wraps(test_method)
226 test_method(self, **testcase_params)
228 test_method(self, *testcase_params)
230 test_method(self, testcase_params)
250 if test_method.__doc__:
251 BoundParamTest.__doc__ += '\n%s' % (test_method.__doc__,
    [all...]
  /external/tensorflow/tensorflow/python/util/
decorator_utils_test.py 35 def test_method(self): member in class:GetQualifiedNameTest
37 "GetQualifiedNameTest.test_method",
38 decorator_utils.get_qualified_name(GetQualifiedNameTest.test_method))
103 def test_method(self): member in class:ValidateCallableTest
104 decorator_utils.validate_callable(self.test_method, "test")
  /external/autotest/server/site_tests/cheets_CTS_N/
cheets_CTS_N.py 52 test_method=None):
63 |test_class| and |test_method|.
78 if test_method is not None:
79 cmd += ['-t', test_class + '#' + test_method]
180 test_method=target_method,
  /external/autotest/server/cros/bluetooth/
bluetooth_adapter_tests.py 292 def retry(test_method, instance, *args, **kwargs):
293 """Execute the target facade test_method(). Retry if failing the first time.
295 A test_method is something like self.test_xxxx() in BluetoothAdapterTests,
298 @param test_method: the test method to retry
300 @returns: True if the return value of test_method() is successful.
304 if _is_successful(_run_method(test_method, test_method.__name__,
309 logging.error('%s failed at the 1st time.', test_method.__name__)
313 logging.info('%s: retry the 2nd time.', test_method.__name__)
316 return _is_successful(_run_method(test_method, test_method.__name__
    [all...]
  /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__
  /external/python/cpython3/Modules/_decimal/tests/
deccheck.py 751 # test_method(method, testspecs, testfunc) ->
762 # main test functions passed to 'test_method'. They deal
782 def test_method(method, testspecs, testfunc): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_docxmlrpc.py 42 def test_method(self, arg): member in class:server.TestClass
test_repr.py 289 def test_method(self): function
  /external/python/cpython2/Lib/test/
test_docxmlrpc.py 35 def test_method(self, arg): member in class:make_server.TestClass
test_repr.py 297 def test_method(self): function
  /external/python/cpython3/Lib/test/
test_docxmlrpc.py 35 def test_method(self, arg): member in class:make_server.TestClass
  /prebuilts/gdb/darwin-x86/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
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_docxmlrpc.py 42 def test_method(self, arg): member in class:server.TestClass
  /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
  /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

Completed in 474 milliseconds

1 2 3