HomeSort by relevance Sort by last modified time
    Searched full:testcontext (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
logs.js 12 testContext,
31 testContext = context;
77 deepEqual(testContext, {
100 deepEqual(testContext, {
120 deepEqual(testContext, {
142 deepEqual(testContext, {
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLContextTest.java 295 TestSSLContext testContext = TestSSLContext.create();
296 assertNotNull(testContext);
297 assertNotNull(testContext.clientKeyStore);
298 assertNull(testContext.clientStorePassword);
299 assertNotNull(testContext.serverKeyStore);
300 assertEquals(StandardNames.IS_RI, testContext.serverStorePassword != null);
301 assertNotNull(testContext.clientKeyManager);
302 assertNotNull(testContext.serverKeyManager);
303 assertNotNull(testContext.clientTrustManager);
304 assertNotNull(testContext.serverTrustManager)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncStorageEngineTest.java 65 new TestContext(mockResolver, getContext()));
82 new TestContext(mockResolver, getContext()));
202 new TestContext(mockResolver, getContext()));
276 new TestContext(mockResolver, getContext()));
355 final TestContext testContext = new TestContext(mockResolver, getContext());
381 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(testContext);
472 final TestContext testContext = new TestContext(mockResolver, getContext())
    [all...]
  /external/valgrind/unittest/
bigtest.cc 242 struct TestContext {
245 TestContext() {
253 TestContext * context = &contexts[id];
283 contexts = new TestContext[params.NUM_CONTEXTS];
291 TestContext * context = &contexts[id];
324 struct TestContext {
331 TestContext * context = &contexts[rand() % NUM_CONTEXTS];
405 struct TestContext {
408 TestContext() : pcq(0) {}
409 ~TestContext() {
    [all...]
  /external/chromium_org/content/common/gpu/client/
context_provider_command_buffer_browsertest.cc 51 ContextProviderCommandBuffer::Create(CreateContext3d(), "TestContext");
  /frameworks/base/test-runner/src/android/test/
AndroidTestRunner.java 186 Context testContext = mInstrumentation == null ? mContext : mInstrumentation.getContext();
188 setContextIfAndroidTestCase(testCase, mContext, testContext);
195 private void setContextIfAndroidTestCase(Test test, Context context, Context testContext) {
198 ((AndroidTestCase) test).setTestContext(testContext);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java 63 protected TestContext mTestContext;
94 static class TestContext extends RenamingDelegatingContext {
102 public TestContext(Context realContext) {
159 mTestContext = new TestContext(realContext);
  /external/chromium/net/data/proxy_resolver_v8_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) {
  /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) {
  /external/chromium_org/net/data/proxy_resolver_v8_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) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoringTest.java 45 TestContext info = setupTestContext(file, basename);
WrapInRefactoringTest.java 49 TestContext info = setupTestContext(file, basename);
RefactoringTest.java 266 protected TestContext setupTestContext(IFile file, String relativePath) throws Exception {
299 TestContext testInfo = createTestContext();
313 protected TestContext createTestContext() {
314 return new TestContext();
317 protected static class TestContext {
ChangeViewRefactoringTest.java 48 TestContext info = setupTestContext(file, basename);
ChangeLayoutRefactoringTest.java 118 TestContext info = setupTestContext(file, basename);
UseCompoundDrawableRefactoringTest.java 99 TestContext info = setupTestContext(file, basename);
ExtractStyleRefactoringTest.java 137 TestContext info = setupTestContext(file, basename);
164 TestContext info = setupTestContext(file, basename);
  /external/chromium-libpac/test/
proxy_test_script.h 174 " var t = new TestContext(test);\n" \
437 "// TestContext\n" \
442 "function TestContext(name) {\n" \
447 "TestContext.prototype.failed = function() {\n" \
451 "TestContext.prototype.expectEquals = function(expectation, actual) {\n" \
458 "TestContext.prototype.expectTrue = function(x) {\n" \
462 "TestContext.prototype.expectFalse = function(x) {\n" \
466 "TestContext.prototype.log = function(x) {\n" \
  /external/chromium_org/v8/src/
full-codegen.h 146 class TestContext;
332 void DoTest(const TestContext* context);
396 TestContext context(this, expr, if_true, if_false, fall_through);
682 // implementation will bind both labels unless it's a TestContext, which
764 class TestContext : public ExpressionContext {
766 TestContext(FullCodeGenerator* codegen,
777 static const TestContext* cast(const ExpressionContext* context) {
779 return reinterpret_cast<const TestContext*>(context);
    [all...]
full-codegen.cc 517 void FullCodeGenerator::TestContext::Plug(Register reg) const {
539 void FullCodeGenerator::TestContext::PlugTOS() const {
581 void FullCodeGenerator::TestContext::PrepareTest(
593 void FullCodeGenerator::DoTest(const TestContext* context) {
970 const TestContext* test = TestContext::cast(context());
994 const TestContext* test = TestContext::cast(context());
    [all...]
  /external/v8/src/
full-codegen.h 120 class TestContext;
306 void DoTest(const TestContext* context);
370 TestContext context(this, expr, if_true, if_false, fall_through);
639 // implementation will bind both labels unless it's a TestContext, which
721 class TestContext : public ExpressionContext {
723 TestContext(FullCodeGenerator* codegen,
734 static const TestContext* cast(const ExpressionContext* context) {
736 return reinterpret_cast<const TestContext*>(context);
full-codegen.cc 490 void FullCodeGenerator::TestContext::Plug(Register reg) const {
512 void FullCodeGenerator::TestContext::PlugTOS() const {
554 void FullCodeGenerator::TestContext::PrepareTest(
566 void FullCodeGenerator::DoTest(const TestContext* context) {
807 const TestContext* test = TestContext::cast(context());
831 const TestContext* test = TestContext::cast(context());
    [all...]
hydrogen.h 653 class TestContext: public AstContext {
655 TestContext(HGraphBuilder* owner,
669 static TestContext* cast(AstContext* context) {
671 return reinterpret_cast<TestContext*>(context);
710 TestContext* test_context() { return test_context_; }
742 TestContext* test_context_;
880 TestContext* inlined_test_context() const {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakset.py 375 def testcontext(): function in function:TestWeakSet.test_weak_destroy_and_mutate_while_iterating
386 with testcontext() as u:
388 with testcontext() as u:
391 with testcontext() as u:
395 with testcontext() as u:
398 with testcontext() as u:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakset.py 375 def testcontext(): function in function:TestWeakSet.test_weak_destroy_and_mutate_while_iterating
386 with testcontext() as u:
388 with testcontext() as u:
391 with testcontext() as u:
395 with testcontext() as u:
398 with testcontext() as u:

Completed in 1855 milliseconds

1 2 3