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

1 2 3 4 5

  /external/capstone/bindings/python/
test_all.py 7 test_basic.test_class()
8 test_arm.test_class()
9 test_arm64.test_class()
10 test_detail.test_class()
11 test_lite.test_class()
12 test_mips.test_class()
13 test_ppc.test_class()
14 test_sparc.test_class()
15 test_systemz.test_class()
16 test_x86.test_class()
    [all...]
test_skipdata.py 39 def test_class(): function
74 test_class()
test_lite.py 52 def test_class(): function
77 test_class()
  /art/test/626-const-class-linking/src/
Helper1.java 20 Class<?> test_class = Test.class; local
21 return new ClassPair(helper1_class, test_class);
RacyMisbehavingHelper.java 22 Class<?> test_class = Test.class; local
31 return new ClassPair(helper1_class, test_class);
  /art/test/626-const-class-linking/src-multidex/
Helper2.java 20 Class<?> test_class = Test.class; local
21 return new ClassPair(helper2_class, test_class);
  /dalvik/dx/tests/133-source-debug-extension/
run 19 test_class=HelloKt.class
23 dx --dex --output=$test_dex $test_class
26 for i in $test_class $test_dex; do
30 diff $test_class.output $test_dex.output
  /tools/tradefederation/core/atest/
unittest_utils.py 24 def assert_strict_equal(test_class, first, second):
30 test_class.assertEqual(first, second)
34 test_class.assertIsInstance(first, type(second))
35 test_class.assertIsInstance(second, type(first))
40 assert_strict_equal(test_class, getattr(first, f),
43 def assert_equal_testinfos(test_class, test_info_a, test_info_b):
47 test_class.assertEqual(test_info_a, test_info_b)
53 test_class.assertEqual(test_info_a_attr, test_info_b_attr,
57 def assert_equal_testinfo_sets(test_class, test_info_set_a, test_info_set_b):
59 test_class.assertEqual(len(test_info_set_a), len(test_info_set_b)
    [all...]
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
class.pass.cpp 29 void test_class() function
45 test_class<Class>();
46 test_class<incomplete_type>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.comp/
class.pass.cpp 29 void test_class() function
45 test_class<Class>();
46 test_class<incomplete_type>();
  /external/clang/test/SemaTemplate/
instantiate-non-type-template-parameter.cpp 28 struct test_class struct in namespace:PR6986
32 typedef member< test_class,const int,&test_class::int_member > ckey_m;
  /development/testrunner/test_defs/
gtest.py 53 test_class = "*"
55 if options.test_class is not None:
56 test_class = options.test_class.lstrip()
60 if test_class != "*" or test_method != "*":
61 filter_arg = "--gtest_filter=%s.%s" % (test_class, test_method)
instrumentation_test.py 104 test_class = self.GetClassName()
105 if options.test_class is not None:
106 test_class = options.test_class.lstrip()
107 if test_class.startswith("."):
108 test_class = self.GetPackageName() + test_class
110 test_class = "%s#%s" % (test_class, options.test_method)
116 if test_class and test_package
    [all...]
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_test_runner.py 48 test_class = getattr(test_module, subtest_name)
52 test = test_class()
  /external/clang/bindings/python/tests/cindex/
test_access_specifiers.py 13 class test_class {
23 test_class = get_cursor(tu, "test_class")
24 assert test_class.access_specifier == AccessSpecifier.INVALID;
  /tools/test/connectivity/acts/framework/tests/
acts_unittest_suite.py 43 for test_class in test_classes_to_run:
44 suite = loader.loadTestsFromTestCase(test_class)
  /tools/test/connectivity/acts/framework/tests/controllers/sl4a_lib/
test_suite.py 37 for test_class in test_classes_to_run:
38 suite = loader.loadTestsFromTestCase(test_class)
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
class.pass.cpp 39 void test_class() function
55 test_class<Class>();
56 test_class<incomplete_type>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.cat/
class.pass.cpp 39 void test_class() function
55 test_class<Class>();
56 test_class<incomplete_type>();
  /tools/test/connectivity/acts/framework/acts/test_utils/wifi/
wifi_power_test_utils.py 464 def create_pkt_config(test_class):
468 test_class: object with all networking paramters
474 if test_class.ipv6_src_type == 'LINK_LOCAL' else
477 mac_dst = test_class.mac_dst
478 if GET_FROM_PHONE in test_class.mac_dst:
479 mac_dst = get_phone_mac(test_class.dut)
481 ipv4_dst = test_class.ipv4_dst
482 if GET_FROM_PHONE in test_class.ipv4_dst:
483 ipv4_dst = get_phone_ip(test_class.dut)
485 ipv6_dst = test_class.ipv6_ds
    [all...]
  /tools/test/connectivity/acts/framework/acts/
config_parser.py 190 for test_class, test_cases in test_identifiers:
191 if "Preflight" in test_class:
192 preflight_tests.append((test_class, test_cases))
193 elif "Postflight" in test_class:
194 postflight_tests.append((test_class, test_cases))
197 random_tests.append((test_class,
203 for test_class, test_cases in random_tests:
204 if test_class == previous_class:
208 new_tests.append((test_class, test_cases))
209 previous_class = test_class
    [all...]
test_runner.py 61 def execute_one_test_class(test_class, test_config, test_identifier):
68 test_class: A subclass of acts.base_test.BaseTestClass that has the test
82 tr.run(test_class)
196 test_class = getattr(module, member_name)
197 if inspect.isclass(test_class):
198 test_classes[member_name] = test_class
503 def run(self, test_class=None):
514 test_class: The python module of a test class. If provided, run this
523 if test_class:
524 self.test_classes = {test_class.__name__: test_class
    [all...]
  /art/test/712-varhandle-invocations/util-src/
generate_java.py 151 'MethodHandles.lookup().findVarHandle(${test_class}.class, "field", ${var_type}.class)',
166 'MethodHandles.lookup().findVarHandle(${test_class}.class, "field", ${var_type}.class)',
181 'MethodHandles.lookup().findStaticVarHandle(${test_class}.class, "field", ${var_type}.class)',
194 'MethodHandles.lookup().findStaticVarHandle(${test_class}.class, "field", ${var_type}.class)',
559 def build_template_dictionary(test_class, var_handle_kind, accessor, var_type):
571 'test_class' : test_class,
582 test_class = var_handle_kind.get_name() + capitalize_first(accessor.method_name) + capitalize_first(var_type.name)
583 GENERATED_TEST_CLASSES.append(test_class)
584 src_file_path = output_path / java_file_for_class(test_class)
    [all...]
  /external/autotest/server/site_tests/cheets_CTS_N/
cheets_CTS_N.py 51 test_class=None,
61 |test_class|.
63 |test_class| and |test_method|.
68 @param test_class: the name of the class of which all test cases will
70 @param test_name: the name of the method of |test_class| to be run.
71 Must be used with |test_class|.
77 if test_class is not None:
79 cmd += ['-t', test_class + '#' + test_method]
81 cmd += ['-t', test_class]
179 test_class=target_class
    [all...]
  /external/ltp/testcases/kernel/device-drivers/base/tbase/
tbase.c 161 struct class test_class = { variable in typeref:struct:class
171 .class = &test_class,
187 .class = &test_class,
333 class_unregister(&test_class);
526 tmp = class_get(&test_class);
527 if (tmp == &test_class) {
535 class_put(&test_class);
727 struct class *cls = &test_class;
743 * with the test_class that is defined
751 error = class_register(&test_class);
    [all...]

Completed in 403 milliseconds

1 2 3 4 5