Home
last modified time | relevance | path

Searched refs:context3 (Results 1 – 9 of 9) sorted by relevance

/third_party/cef/tests/ceftests/
Drequest_context_unittest.cc67 CefRefPtr<CefRequestContext> context3 = CefRequestContext::GetGlobalContext(); in TEST() local
68 EXPECT_TRUE(context3.get()); in TEST()
69 EXPECT_FALSE(context3->IsSame(context1)); in TEST()
70 EXPECT_FALSE(context3->IsSharingWith(context1)); in TEST()
71 EXPECT_FALSE(context3->IsSame(context2)); in TEST()
72 EXPECT_FALSE(context3->IsSharingWith(context2)); in TEST()
73 EXPECT_FALSE(context1->IsSame(context3)); in TEST()
74 EXPECT_FALSE(context1->IsSharingWith(context3)); in TEST()
75 EXPECT_FALSE(context2->IsSame(context3)); in TEST()
76 EXPECT_FALSE(context2->IsSharingWith(context3)); in TEST()
[all …]
Dpreference_unittest.cc462 CefRefPtr<CefRequestContext> context3 = in TEST() local
464 EXPECT_TRUE(context3.get()); in TEST()
484 ValidateGet(context3, event); in TEST()
561 CefRefPtr<CefRequestContext> context3 = in TEST() local
563 EXPECT_TRUE(context3.get()); in TEST()
582 ValidateGet(context3, event); in TEST()
/third_party/typescript/tests/baselines/reference/
DarrayLiterals.js32 var context3: Base[] = [new Derived1(), new Derived2()]; variable
96 var context3 = [new Derived1(), new Derived2()]; variable
DarrayLiterals.symbols81 var context3: Base[] = [new Derived1(), new Derived2()];
82 >context3 : Symbol(context3, Decl(arrayLiterals.ts, 30, 3))
DarrayLiterals.types133 var context3: Base[] = [new Derived1(), new Derived2()];
134 >context3 : Base[]
DarrayLiterals.errors.txt46 var context3: Base[] = [new Derived1(), new Derived2()];
/third_party/openssl/test/
Dcurve448_internal_test.c196 static const uint8_t context3[3] = { variable
621 privkey3, context3, sizeof(context3))) in test_ed448()
/third_party/typescript/tests/cases/conformance/expressions/arrayLiterals/
DarrayLiterals.ts31 var context3: Base[] = [new Derived1(), new Derived2()]; variable
/third_party/grpc/test/cpp/interop/
Dinterop_client.cc936 ClientContext context3; in DoCacheableUnary() local
938 context3.set_cacheable(true); in DoCacheableUnary()
939 context3.AddMetadata("x-user-ip", "1.2.3.4"); in DoCacheableUnary()
941 serviceStub_.Get()->CacheableUnaryCall(&context3, request1, &response3); in DoCacheableUnary()
942 if (!AssertStatusOk(s3, context3.debug_error_string())) { in DoCacheableUnary()