HomeSort by relevance Sort by last modified time
    Searched defs:TestContext (Results 1 - 25 of 41) sorted by null

1 2

  /external/deqp/framework/common/
tcuTestContext.cpp 31 TestContext::TestContext (
49 void TestContext::touchWatchdog (void)
55 void TestContext::setTestResult (qpTestResult testResult, const char* description)
tcuTestContext.hpp 48 class TestContext
51 TestContext (Platform& platform, Archive& rootArchive, TestLog& log, const CommandLine& cmdLine, qpWatchDog* watchDog);
52 ~TestContext (void) {}
74 TestContext (const TestContext&);
75 TestContext& operator= (const TestContext&);
  /external/skia/tools/gpu/
TestContext.cpp 9 #include "TestContext.h"
14 TestContext::TestContext()
21 TestContext::~TestContext() {
32 void TestContext::makeCurrent() const { this->onPlatformMakeCurrent(); }
34 void TestContext::swapBuffers() { this->onPlatformSwapBuffers(); }
36 void TestContext::waitOnSyncOrSwap() {
55 void TestContext::testAbandon() {
61 void TestContext::teardown()
    [all...]
TestContext.h 24 class TestContext : public SkNoncopyable {
26 virtual ~TestContext();
87 TestContext();
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/dirlist/
TestContext.java 26 public final class TestContext {
  /frameworks/base/libs/hwui/tests/common/
TestContext.cpp 17 #include "tests/common/TestContext.h"
56 TestContext::TestContext() {
63 TestContext::~TestContext() {}
65 sp<Surface> TestContext::surface() {
72 void TestContext::createSurface() {
80 void TestContext::createWindowSurface() {
91 void TestContext::createOffscreenSurface() {
102 void TestContext::waitForVsync()
    [all...]
TestContext.h 41 class TestContext {
43 TestContext();
44 ~TestContext();
  /frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/
TestContext.java 24 public class TestContext extends ContextWrapper {
30 public TestContext(Context base) {
  /frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/span/
LinkSpanTest.java 39 final TestContext context = new TestContext(application);
59 private static class TestContext extends ContextWrapper implements LinkSpan.OnClickListener {
63 TestContext(Context base) {
  /system/keymaster/
attestation_record_test.cpp 31 class TestContext : public KeymasterContext {
112 EXPECT_EQ(KM_ERROR_OK, build_attestation_record(attest_params, sw_set, hw_set, TestContext(),
  /packages/apps/Settings/tests/unit/src/com/android/settings/fingerprint/
SetupFingerprintEnrollIntroductionTest.java 38 private TestContext mContext;
53 mContext = new TestContext(getInstrumentation().getTargetContext());
95 public class TestContext extends ContextWrapper {
97 public TestContext(Context base) {
FingerprintEnrollIntroductionTest.java 44 private TestContext mContext;
59 mContext = new TestContext(getInstrumentation().getTargetContext());
95 public class TestContext extends ContextWrapper {
97 public TestContext(Context base) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestContext.java 23 public class TestContext extends BidiFmwk {
72 public void testContext()
79 logln("\nEntering TestContext\n");
103 logln("\nExiting TestContext\n");
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestContext.java 22 public class TestContext extends BidiFmwk {
71 public void testContext()
78 logln("\nEntering TestContext\n");
102 logln("\nExiting TestContext\n");
  /frameworks/base/core/tests/coretests/src/android/provider/
TestDocumentsProvider.java 50 context = new TestContext(context);
105 private static class TestContext extends ContextWrapper {
107 private TestContext(Context context) {
  /external/chromium-libpac/test/js-unittest/
pac_library_unittest.js 13 var t = new TestContext(test);
276 // TestContext
281 function TestContext(name) {
286 TestContext.prototype.failed = function() {
290 TestContext.prototype.expectEquals = function(expectation, actual) {
297 TestContext.prototype.expectTrue = function(x) {
301 TestContext.prototype.expectFalse = function(x) {
305 TestContext.prototype.log = function(x) {
  /packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
CellBroadcastActivityTestCase.java 31 protected TestContext mContext;
42 mContext = new TestContext(getInstrumentation().getTargetContext());
81 public static class TestContext extends ContextWrapper {
83 private static final String TAG = TestContext.class.getSimpleName();
87 public TestContext(Context base) {
  /prebuilts/go/darwin-x86/src/os/exec/
exec_test.go 900 func TestContext(t *testing.T) {
  /prebuilts/go/linux-x86/src/os/exec/
exec_test.go 900 func TestContext(t *testing.T) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
AnyScriptTest.java 28 public void TestContext() {
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
AnyScriptTest.java 27 public void TestContext() {
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 101 class TestContext
104 TestContext (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig eglConfig, const TestConfig& config, bool share, TestContext* parent);
105 ~TestContext (void);
118 TestContext* m_parent;
145 TestContext& operator= (const TestContext&);
146 TestContext (const TestContext&);
479 TestContext::TestContext (EglTestContext& testCtx, EGLDisplay eglDisplay, EGLConfig eglConfig, const TestConfi (…)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncStorageEngineTest.java 78 new TestContext(mockResolver, getContext()));
95 new TestContext(mockResolver, getContext()));
153 final TestContext testContext = new TestContext(mockResolver, getContext());
162 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(testContext);
182 final TestContext testContext = new TestContext(mockResolver, getContext());
198 File syncDir = new File(new File(testContext.getFilesDir(), "system"), "sync")
    [all...]
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java 66 protected TestContext mTestContext;
100 static class TestContext extends RenamingDelegatingContext {
108 public TestContext(Context realContext) {
157 mTestContext = new TestContext(realContext);
  /external/deqp/execserver/tools/
xsTest.cpp 165 class TestContext
168 TestContext (void) : startServer(false) {}
180 TestContext (const TestContext& other);
181 TestContext& operator= (const TestContext& other);
187 TestCase (TestContext& testCtx, const char* name) : m_testCtx(testCtx), m_name(name) {}
196 TestContext& m_testCtx;
203 TestExecutor (TestContext& testCtx);
210 TestContext& m_testCtx
    [all...]

Completed in 1701 milliseconds

1 2