Home
last modified time | relevance | path

Searched refs:Tests (Results 1 - 25 of 74) sorted by relevance

123

/third_party/protobuf/objectivec/DevTools/
H A Dcompile_testing_protos.sh65 objectivec/Tests/unittest_cycle.proto
66 objectivec/Tests/unittest_deprecated.proto
67 objectivec/Tests/unittest_deprecated_file.proto
68 objectivec/Tests/unittest_extension_chain_a.proto
69 objectivec/Tests/unittest_extension_chain_b.proto
70 objectivec/Tests/unittest_extension_chain_c.proto
71 objectivec/Tests/unittest_extension_chain_d.proto
72 objectivec/Tests/unittest_extension_chain_e.proto
73 objectivec/Tests/unittest_extension_chain_f.proto
74 objectivec/Tests/unittest_extension_chain_
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cSyncTests.hpp41 /** @class Tests
45 class Tests : public deqp::TestCaseGroup class
49 Tests(deqp::Context& context);
55 Tests(const Tests& other);
56 Tests& operator=(const Tests& other);
58 /* Tests class */
H A Dgl4cIncompleteTextureAccessTests.hpp41 /** @class Tests
45 class Tests : public deqp::TestCaseGroup class
49 Tests(deqp::Context& context);
55 Tests(const Tests& other);
56 Tests& operator=(const Tests& other);
58 /* Tests class */
H A Dgl4cContextFlushControlTests.hpp49 /** @class Tests
67 class Tests : public deqp::TestCaseGroup class
71 Tests(deqp::Context& context);
77 Tests(const Tests& other);
78 Tests& operator=(const Tests& other);
H A Dgl4cConditionalRenderInvertedTests.hpp47 /** @class Tests
51 class Tests : public deqp::TestCaseGroup class
55 Tests(deqp::Context& context);
61 Tests(const Tests& other);
62 Tests& operator=(const Tests& other);
H A Dgl4cES31CompatibilityTests.hpp49 /** @class Tests
51 * @brief OpenGL ES 3.1 Compatibility Tests Suite.
53 class Tests : public deqp::TestCaseGroup class
57 Tests(deqp::Context& context);
63 Tests(const Tests& other);
64 Tests& operator=(const Tests& other);
67 /* Tests class */
151 * @breif This class groups adjusted OpenGL ES 3.1 Sample Variables Tests
[all...]
H A Dgl4cGetTextureSubImageTests.hpp29 * \brief Get Texture Sub Image Tests Suite Interface
47 /** Tests group for GetTextureSubImage tests.
53 class Tests : public deqp::TestCaseGroup class
56 Tests(deqp::Context& context);
57 ~Tests(void);
62 Tests(const Tests& other);
63 Tests& operator=(const Tests& other);
65 /* Tests clas
[all...]
H A Dgl3cTextureSizePromotion.hpp43 class Tests : public deqp::TestCaseGroup class
47 Tests(deqp::Context& context); //!< Constructor.
48 virtual ~Tests() in ~Tests()
56 Tests(const Tests&); //!< Default copy constructor.
57 Tests& operator=(const Tests&); //!< Default assign constructor.
H A Dgl3cCullDistanceTests.hpp248 /** @brief Grouping class for Cull Distance Tests */
249 class Tests : public deqp::TestCaseGroup class
253 Tests(deqp::Context& context);
258 Tests(const CullDistance::Tests& other);
259 Tests& operator=(const CullDistance::Tests& other);
H A Dgl3cClipDistance.hpp189 /** @class Tests
193 class Tests : public deqp::TestCaseGroup class
197 Tests(deqp::Context& context);
203 Tests(const Tests& other);
204 Tests& operator=(const Tests& other);
H A Dgl4cSyncTests.cpp54 /****************************************** Tests Group ***********************************************/
56 /** @brief Sync Tests Group constructor.
60 Tests::Tests(deqp::Context& context) : TestCaseGroup(context, "sync", "Sync Tests Suite") in Tests() function in gl4cts::Sync::Tests
64 /** @brief Sync Tests initializer. */
65 void Tests::init() in init()
180 << reference[0] << ", " << reference[1] << "]. Tests fails." in iterate()
189 << glu::getErrorStr(error) << ". Tests fails." << tcu::TestLog::EndMessage; in iterate()
H A Dgl3cTestPackages.cpp126 GL30ShaderTests(deqp::Context& context) : TestCaseGroup(context, "shaders30", "Shading Language Tests") in GL30ShaderTests()
132 addChild(new deqp::ShaderLibraryGroup(m_context, "declarations", "Declaration Tests", "gl30/declarations.test")); in init()
156 addChild(new gl3cts::ClipDistance::Tests(getContext())); in init()
158 addChild(new gl3cts::TransformFeedback::Tests(getContext())); in init()
197 addChild(new gl3cts::TextureSizePromotion::Tests(getContext())); in init()
246 GL33ShaderTests(deqp::Context& context) : TestCaseGroup(context, "shaders", "Shading Language Tests") in GL33ShaderTests()
252 addChild(new deqp::ShaderLibraryGroup(m_context, "arrays", "Array Tests", "gl33/arrays.test")); in init()
254 new deqp::ShaderLibraryGroup(m_context, "declarations", "Declaration Tests", "gl33/declarations.test")); in init()
259 new deqp::ShaderLibraryGroup(m_context, "preprocessor", "Preprocessor Tests", "gl33/preprocessor.test")); in init()
290 addChild(new glcts::CullDistance::Tests(getContex in init()
[all...]
H A Dgl4cTestPackages.cpp182 GL42ShaderTests(deqp::Context& context) : TestCaseGroup(context, "shaders42", "Shading Language Tests") in GL42ShaderTests()
188 addChild(new deqp::ShaderLibraryGroup(m_context, "declarations", "Declaration Tests", "gl42/declarations.test")); in init()
230 GL42CompatShaderTests(deqp::Context& context) : TestCaseGroup(context, "shaders42", "Shading Language Tests") in GL42CompatShaderTests()
236 addChild(new deqp::ShaderLibraryGroup(m_context, "builtin", "Builtin Tests", "gl42-compat/builtins.test")); in init()
237 addChild(new deqp::ShaderLibraryGroup(m_context, "varying", "Varying Tests", "gl42-compat/varyings.test")); in init()
325 GL44ShaderTests(deqp::Context& context) : TestCaseGroup(context, "shaders44", "Shading Language Tests") in GL44ShaderTests()
332 new deqp::ShaderLibraryGroup(m_context, "preprocessor", "Preprocessor Tests", "gl44/preprocessor.test")); in init()
373 //addChild(new gl4cts::ContextFlushControl::Tests(getContext())); in init()
388 GL45ShaderTests(deqp::Context& context) : TestCaseGroup(context, "shaders45", "Shading Language Tests") in GL45ShaderTests()
418 addChild(new gl4cts::DirectStateAccess::Tests(getContex in init()
[all...]
H A Dgl3cTransformFeedbackTests.hpp49 class Tests : public deqp::TestCaseGroup class
52 Tests(deqp::Context& context);
53 ~Tests(void);
57 Tests(const Tests& other);
58 Tests& operator=(const Tests& other);
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlist/
H A Dtestlist.go48 Tests []string
69 g.Tests = append(g.Tests, line)
72 sort.Strings(g.Tests)
83 for _, test := range g.Tests {
85 out.Tests = append(out.Tests, test)
97 Tests: g.Tests,
99 if len(g.Tests) > limi
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/tools/bench/
H A Dbench.go59 Tests []Test
91 Tests: make([]Test, 0, len(lines)),
116 b.Tests = append(b.Tests, t)
128 Tests []T `json:"benchmarks"`
137 Tests: make([]Test, len(b.Tests)),
139 for i, test := range b.Tests {
146 out.Tests[i] = t
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/run_testlist/
H A Dmain.go97 rnd.Shuffle(len(group.Tests), func(i, j int) { group.Tests[i], group.Tests[j] = group.Tests[j], group.Tests[i] })
100 if *limit != 0 && len(group.Tests) > *limit {
101 group.Tests = group.Tests[:*limit]
104 log.Printf("Running %d tests...\n", len(group.Tests))
135 for _, r := range res.Tests {
[all...]
/third_party/skia/third_party/externals/swiftshader/tests/regres/deqp/
H A Ddeqp.go79 Tests map[string]TestResult
181 tests := make(chan string, len(list.Tests))
207 shuffled := make([]string, len(list.Tests))
208 for i, j := range rand.New(rand.NewSource(42)).Perm(len(list.Tests)) {
209 shuffled[i] = list.Tests[j]
222 numTests += len(list.Tests)
227 Tests: map[string]TestResult{},
249 out.Tests[r.Test] = r
/third_party/EGL/api/
H A DMakefile24 TESTS = Tests
40 rm -f *.[io] Tests/*.[io] diag.txt dumpReg.txt errwarn.txt
/third_party/skia/third_party/externals/egl-registry/api/
H A DMakefile35 TESTS = Tests
51 rm -f *.[io] Tests/*.[io] diag.txt dumpReg.txt errwarn.txt
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js321 // Tests running in a worker don't have a default timeout. I.e. all
513 // Tests running in a shell don't have a default timeout, so behave as
2480 // Tests declared following harness completion are likely an indication
2998 * test. Any test may return the value `undefined`. Tests created with
3099 * as attached by the `Tests` instance responsible for tracking the overall
3362 function Tests()
3426 Tests.prototype.setup = function(func, properties)
3481 Tests.prototype.set_file_is_test = function() {
3491 Tests.prototype.set_status = function(status, message, stack)
3498 Tests
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Dgen_exceptions.js145 ` Tests with parse errors from ${name} `, failedParse));
147 ` Tests with mutation errors from ${name} `, failedMutate));
157 ` Tests requiring sloppy mode from ${name} `, failedParseStrict));
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/
H A DCompilerRegressionTest.java31 import com.google.i18n.phonenumbers.internal.finitestatematcher.compiler.RegressionTestProto.Tests;
57 // Tests that the compiler produces the expected output, byte-for-byte.
64 Tests.Builder tests = RegressionTestProto.Tests.newBuilder(); in testCompiledBytesEqualExpectedMatcherBytes()
103 RegressionTestProto.Tests.Builder tests = RegressionTestProto.Tests.newBuilder(); in testExpectedMatcherBytesMatchRanges()
/third_party/vk-gl-cts/external/amber/src/kokoro/scripts/windows/
H A Dbuild.bat63 echo "Running Tests... %DATE% %TIME%"
66 echo "Tests Completed %DATE% %TIME%"
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2015-release-bazel/
H A Dbuild.bat54 echo "Running Tests... %DATE% %TIME%"
57 echo "Tests Completed %DATE% %TIME%"

Completed in 14 milliseconds

123