Home
last modified time | relevance | path

Searched defs:test (Results 1 – 25 of 3681) sorted by relevance

12345678910>>...148

/third_party/icu/icu4c/source/test/intltest/
Ditmajor.cpp58 IntlTestUtilities test; in runIndexedTest() local
67 IntlTestNormalize test; in runIndexedTest() local
77 IntlTestCollator test; in runIndexedTest() local
87 RegexTest test; in runIndexedTest() local
97 IntlTestFormat test; in runIndexedTest() local
107 IntlTestTransliterator test; in runIndexedTest() local
117 IntlTestRBBI test; in runIndexedTest() local
126 IntlTestRBNF test; in runIndexedTest() local
135 RbnfRoundTripTest test; in runIndexedTest() local
145 ICUServiceTest test; in runIndexedTest() local
[all …]
Ditformat.cpp156 LocalPointer<IntlTest> test(createTimeUnitTest()); in runIndexedTest() local
171 LocalPointer<IntlTest> test(createGenderInfoTest()); in runIndexedTest() local
180 LocalPointer<IntlTest> test(createCompactDecimalFormatTest()); in runIndexedTest() local
191 LocalPointer<IntlTest> test(createRelativeDateTimeFormatterTest()); in runIndexedTest() local
201 LocalPointer<IntlTest> test(createMeasureFormatTest()); in runIndexedTest() local
210 LocalPointer<IntlTest> test(createNumberFormatSpecificationTest()); in runIndexedTest() local
219 LocalPointer<IntlTest> test(createScientificNumberFormatterTest()); in runIndexedTest() local
231 LocalPointer<IntlTest> test(createFormattedValueTest()); in runIndexedTest() local
240 LocalPointer<IntlTest> test(createFormattedStringBuilderTest()); in runIndexedTest() local
249 LocalPointer<IntlTest> test(createStringSegmentTest()); in runIndexedTest() local
[all …]
/third_party/typescript/tests/baselines/reference/
DcontrolFlowPrivateClassField.js3 #test; field in Example
9 get test() { getter in Example
15 #test; field in Example2
21 get test() { getter in Example2
32 constructor(test) { argument
35 #test; field in Example
36 get test() { getter in Example
41 constructor(test) { argument
44 #test; field in Example2
45 get test() { getter in Example2
DunusedPrivateMembers.js6 public test() { method in Test1
14 public test() { method in Test2
25 public test() { method in Test3
36 public test() { method in Test4
44 public test() { method in Test5
59 public test() { method in Test6
73 Test1.prototype.test = function () { method in Test1
83 Test2.prototype.test = function () { method in Test2
99 Test3.prototype.test = function () { method in Test3
115 Test4.prototype.test = function () { method in Test4
[all …]
DconditionalTypesExcessProperties.js2 type Something<T> = { test: string } & (T extends object ? { property
9 sa = { test: 'hi', arg: a }; // not excess (but currently still not assignable) property
10 sa = { test: 'bye', arg: a, arr: a } // excess property
16 sa = { test: 'hi', arg: a }; // not excess (but currently still not assignable) property
17 sa = { test: 'bye', arg: a, arr: a }; // excess property
/third_party/node/test/wasi/
Dtest-wasi.js65 runWASI({ test: 'cant_dotdot' }); property
69 runWASI({ test: 'clock_getres' }); property
71 runWASI({ test: 'exitcode', exitCode: 120 }); property
72 runWASI({ test: 'fd_prestat_get_refresh' }); property
73 runWASI({ test: 'freopen', stdout: `hello from input2.txt${EOL}` }); property
74 runWASI({ test: 'ftruncate' }); property
75 runWASI({ test: 'getentropy' }); property
79 runWASI({ test: 'getrusage' }); property
81 runWASI({ test: 'gettimeofday' }); property
82 runWASI({ test: 'main_args' }); property
[all …]
/third_party/node/deps/npm/node_modules/encoding/test/
Dtest.js8 'Iconv is available': function (test) { argument
13 'From UTF-8 to Latin_1 with Iconv': function (test) { argument
20 'From Latin_1 to UTF-8 with Iconv': function (test) { argument
27 'From UTF-8 to UTF-8 with Iconv': function (test) { argument
34 'From Latin_13 to Latin_15 with Iconv': function (test) { argument
41 'From ISO-2022-JP to UTF-8 with Iconv': function (test) { argument
48 'From UTF-8 to Latin_1 with iconv-lite': function (test) { argument
55 'From Latin_1 to UTF-8 with iconv-lite': function (test) { argument
62 'From UTF-8 to UTF-8 with iconv-lite': function (test) { argument
69 'From Latin_13 to Latin_15 with iconv-lite': function (test) { argument
/third_party/mesa3d/src/panfrost/lib/tests/
Dtest-blend.c27 struct test { struct
43 static const struct test blend_tests[] = { argument
/third_party/rust/crates/serde/test_suite/tests/
Dtest_de_error.rs69 let test = assert_de_tokens_error::<i8>; in test_i8() localVariable
118 let test = assert_de_tokens_error::<i16>; in test_i16() localVariable
155 let test = assert_de_tokens_error::<i32>; in test_i32() localVariable
180 let test = assert_de_tokens_error::<i64>; in test_i64() localVariable
201 let test = assert_de_tokens_error::<u8>; in test_u8() localVariable
247 let test = assert_de_tokens_error::<u16>; in test_u16() localVariable
288 let test = assert_de_tokens_error::<u32>; in test_u32() localVariable
321 let test = assert_de_tokens_error::<u64>; in test_u64() localVariable
351 let test = assert_de_tokens_error::<u128>; in test_u128() localVariable
381 let test = assert_de_tokens_error::<usize>; in test_usize() localVariable
[all …]
Dtest_de.rs151 fn test<'de, T>(value: T, tokens: &'de [Token]) in test() function
218 let test = test::<i8>; in test_i8() localVariable
243 let test = test::<i16>; in test_i16() localVariable
268 let test = test::<i32>; in test_i32() localVariable
293 let test = test::<i64>; in test_i64() localVariable
318 let test = test::<i128>; in test_i128() localVariable
343 let test = test::<isize>; in test_isize() localVariable
368 let test = test::<u8>; in test_u8() localVariable
393 let test = test::<u16>; in test_u16() localVariable
418 let test = test::<u32>; in test_u32() localVariable
[all …]
/third_party/libinput/udev/
Dtest-libinput-fuzz-extract.c36 struct test { in START_TEST() struct
37 uint32_t which; in START_TEST()
38 const char *prop; in START_TEST()
39 int min, max, res, fuzz, flat; in START_TEST()
/third_party/typescript/tests/cases/compiler/
DunusedPrivateMembers.ts9 public test() { method in Test1
17 public test() { method in Test2
28 public test() { method in Test3
39 public test() { method in Test4
47 public test() { method in Test5
62 public test() { method in Test6
/third_party/spirv-tools/test/opt/
Dreduce_load_size_test.cpp51 const std::string test = in TEST_F() local
136 const std::string test = in TEST_F() local
235 const std::string test = in TEST_F() local
298 const std::string test = in TEST_F() local
370 const std::string test = in TEST_F() local
434 const std::string test = in TEST_F() local
502 const std::string test = in TEST_F() local
/third_party/ltp/testcases/kernel/syscalls/set_thread_area/
Dset_thread_area01.c38 struct test { struct
57 static struct test tests[] = { argument
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dreduce_load_size_test.cpp51 const std::string test = in TEST_F() local
136 const std::string test = in TEST_F() local
235 const std::string test = in TEST_F() local
298 const std::string test = in TEST_F() local
370 const std::string test = in TEST_F() local
434 const std::string test = in TEST_F() local
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dreduce_load_size_test.cpp51 const std::string test = in TEST_F() local
136 const std::string test = in TEST_F() local
235 const std::string test = in TEST_F() local
298 const std::string test = in TEST_F() local
370 const std::string test = in TEST_F() local
434 const std::string test = in TEST_F() local
/third_party/python/Lib/unittest/test/testmock/
Dtestpatch.py102 def test(): function
119 def test(): function
134 def test(): function
151 def test(): function
164 def test(): function
174 def test(): function
196 def test(): function
208 def test(): function
223 def test(mock): function
233 def test(this1, this2, mock1, mock2): function
[all …]
/third_party/python/Tools/unittestgui/
Dunittestgui.py129 def notifyTestFailed(self, test, err): argument
133 def notifyTestErrored(self, test, err): argument
137 def notifyTestSkipped(self, test, reason): argument
141 def notifyTestFailedExpectedly(self, test, err): argument
145 def notifyTestStarted(self, test): argument
149 def notifyTestFinished(self, test): argument
163 def addError(self, test, err): argument
167 def addFailure(self, test, err): argument
171 def addSkip(self, test, reason): argument
175 def addExpectedFailure(self, test, err): argument
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dstr_split_benchmark.cc31 std::string test(desired_length * kAverageValueLen, 'x'); in MakeTestString() local
39 std::string test = MakeTestString(state.range(0)); in BM_Split2StringView() local
51 std::string test(desired_length * kAverageValueLen, 'x'); in MakeMultiDelimiterTestString() local
61 std::string test = MakeMultiDelimiterTestString(state.range(0)); in BM_Split2StringViewByAnyChar() local
71 std::string test = MakeTestString(state.range(0)); in BM_Split2StringViewLifted() local
81 std::string test = MakeTestString(state.range(0)); in BM_Split2String() local
93 std::string test = MakeTestString(state.range(0)); in BM_Split2SplitStringUsing() local
104 std::string test(len, 'x'); in BM_SplitStringToUnorderedSet() local
118 std::string test(len, 'x'); in BM_SplitStringToUnorderedMap() local
132 std::string test(len, 'x'); in BM_SplitStringAllowEmpty() local
/third_party/python/Lib/unittest/
Dresult.py58 def startTest(self, test): argument
78 def stopTest(self, test): argument
111 def addError(self, test, err): argument
119 def addFailure(self, test, err): argument
125 def addSubTest(self, test, subtest, err): argument
142 def addSuccess(self, test): argument
146 def addSkip(self, test, reason): argument
150 def addExpectedFailure(self, test, err): argument
156 def addUnexpectedSuccess(self, test): argument
173 def _exc_info_to_string(self, err, test): argument
Drunner.py44 def getDescription(self, test): argument
51 def startTest(self, test): argument
58 def addSuccess(self, test): argument
67 def addError(self, test, err): argument
76 def addFailure(self, test, err): argument
85 def addSkip(self, test, reason): argument
94 def addExpectedFailure(self, test, err): argument
103 def addUnexpectedSuccess(self, test): argument
159 def run(self, test): argument
/third_party/python/Lib/test/support/
Dtestresult.py29 def __getId(cls, test): argument
40 def startTest(self, test): argument
46 def _add_result(self, test, capture=False, **args): argument
101 def addError(self, test, err): argument
105 def addExpectedFailure(self, test, err): argument
109 def addFailure(self, test, err): argument
113 def addSkip(self, test, reason): argument
117 def addSuccess(self, test): argument
121 def addUnexpectedSuccess(self, test): argument
139 def run(self, test): argument
/third_party/skia/modules/pathkit/perf/
Dpath.bench.js46 function test(ctx) { function
66 function test(ctx) { function
85 function test(ctx) { function
108 function test(ctx) { function
131 function test(ctx) { function
153 function test(ctx) { function
173 function test(ctx) { function
193 function test(ctx) { function
224 function test(ctx) { function
252 function test(ctx) { function
[all …]
/third_party/flutter/skia/modules/pathkit/perf/
Dpath.bench.js46 function test(ctx) { function
66 function test(ctx) { function
85 function test(ctx) { function
108 function test(ctx) { function
131 function test(ctx) { function
153 function test(ctx) { function
173 function test(ctx) { function
193 function test(ctx) { function
224 function test(ctx) { function
252 function test(ctx) { function
[all …]
/third_party/gstreamer/gstplugins_good/gst/debugutils/
Dtestplugin.c129 gst_test_init (GstTest * test) in gst_test_init()
144 gst_test_finalize (GstTest * test) in gst_test_finalize()
156 tests_unset (GstTest * test) in tests_unset()
169 tests_set (GstTest * test) in tests_set()
183 GstTest *test = GST_TEST (basesink); in gst_test_sink_event() local
232 GstTest *test = GST_TEST (basesink); in gst_test_render_buffer() local
246 GstTest *test = GST_TEST (sink); in gst_test_start() local
255 GstTest *test = GST_TEST (sink); in gst_test_stop() local
265 GstTest *test = GST_TEST (object); in gst_test_set_property() local
287 GstTest *test = GST_TEST (object); in gst_test_get_property() local

12345678910>>...148