/build/blueprint/ |
context_test.go | 91 ctx := NewContext() 131 ctx := NewContext() 214 ctx := newContext() 305 ctx := newContext() 362 ctx := newContext()
|
visit_test.go | 87 ctx := NewContext()
|
/external/selinux/libsepol/src/ |
mls.c | 611 uint32_t specified, context_struct_t * newcontext) 629 return mls_range_set(newcontext, r); 639 return mls_context_cpy_low(newcontext, scontext); 641 return mls_context_cpy_high(newcontext, scontext); 643 return mls_context_cpy(newcontext, scontext); 645 return mls_context_cpy_low(newcontext, tcontext); 647 return mls_context_cpy_high(newcontext, tcontext); 649 return mls_context_cpy(newcontext, tcontext); 656 return mls_copy_context(newcontext, scontext); 659 return mls_scopy_context(newcontext, scontext) [all...] |
services.c | 1368 context_struct_t *scontext = 0, *tcontext = 0, newcontext; local [all...] |
/external/conscrypt/testing/src/main/java/org/conscrypt/ |
TestUtils.java | 261 SSLContext clientContext = initClientSslContext(newContext(provider)); 266 SSLContext serverContext = initServerSslContext(newContext(provider)); 270 static SSLContext newContext(Provider provider) { 280 TestUtils.initSslContext(newContext(getJdkProvider()), TestKeyStore.getClient()); 282 newContext(getConscryptProvider()), TestKeyStore.getClient()); 339 SSLContext context = newContext(provider); 344 SSLContext context = newContext(provider);
|
/frameworks/support/asynclayoutinflater/src/main/java/androidx/asynclayoutinflater/view/ |
AsyncLayoutInflater.java | 138 public LayoutInflater cloneInContext(Context newContext) { 139 return new BasicInflater(newContext);
|
/frameworks/base/core/java/android/preference/ |
GenericInflater.java | 119 * @param newContext The new Context to use. 121 protected GenericInflater(GenericInflater<T,P> original, Context newContext) { 122 mContext = newContext; 132 * @param newContext The new Context to associate with the new inflater. 138 public abstract GenericInflater cloneInContext(Context newContext);
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetEncoderICU.java | 175 * newContext should remain the same since using a different newContext each time will negate the last 179 * @param newContext Object 182 public final void setFromUCallback(CoderResult err, CharsetCallback.Encoder newCallback, Object newContext) { 191 if (fromUContext == null || !fromUContext.equals(newContext)) { 192 setFromUContext(newContext); 199 * @param newContext Object 203 public final void setFromUContext(Object newContext) { 204 fromUContext = newContext; [all...] |
CharsetDecoderICU.java | 161 * newContext should remain the same since using a different newContext each time will negate the last 165 * @param newContext Object 168 public final void setToUCallback(CoderResult err, CharsetCallback.Decoder newCallback, Object newContext) { 177 if (toUContext == null || !toUContext.equals(newContext)) { 178 toUContext = newContext;
|
/external/icu/icu4c/source/test/cintltst/ |
tracetst.c | 227 const void *newContext = (const char *)originalTContext + 1; 233 utrace_setFunctions(newContext, testTraceEntry, testTraceExit, testTraceData); 238 TEST_ASSERT(context == newContext);
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/ |
SmaliCodeFragmentFactory.java | 270 final PsiElement newContext = codeFragment.findElementAt(offset); 271 if (newContext != null) { 272 newContext.putUserData(SMALI_LAZY_VALUES_KEY, lazyValues); 273 return newContext;
|
/libcore/ojluni/src/main/java/java/time/format/ |
DateTimeParseContext.java | 131 DateTimeParseContext newContext = new DateTimeParseContext(formatter); 132 newContext.caseSensitive = caseSensitive; 133 newContext.strict = strict; 134 return newContext;
|
/libcore/luni/src/test/java/libcore/xml/ |
JaxenXPathTestSuite.java | 175 Node newContext = (Node) xpath.evaluate( 178 xpath.evaluate(valueOfSelect, newContext, XPathConstants.STRING));
|
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/ |
SSLContextTest.java | 95 SSLContext newContext = SSLContext.getInstance(protocol); 96 assertNotNull(newContext); 97 assertNotSame(oldContext, newContext); 98 SSLContext.setDefault(newContext); 99 assertSame(newContext, SSLContext.getDefault());
|
/cts/tests/tests/view/src/android/view/cts/ |
LayoutInflaterTest.java | 421 public MockLayoutInflater(LayoutInflater original, Context newContext) { 422 super(original, newContext); 432 public LayoutInflater cloneInContext(Context newContext) {
|
/prebuilts/go/darwin-x86/src/context/ |
context.go | 137 // // unexported; clients use user.NewContext and user.FromContext 141 // // NewContext returns a new Context that carries value u. 142 // func NewContext(ctx context.Context, u *User) context.Context {
|
/prebuilts/go/linux-x86/src/context/ |
context.go | 137 // // unexported; clients use user.NewContext and user.FromContext 141 // // NewContext returns a new Context that carries value u. 142 // func NewContext(ctx context.Context, u *User) context.Context {
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
RenegotiationTest.java | 129 SSLContext context = TestUtils.newContext(TestUtils.getConscryptProvider()); 134 SSLContext context = TestUtils.newContext(TestUtils.getJdkProvider());
|
ConscryptEngineTest.java | 417 SSLContext serverContext = newContext(provider, keyStore); 527 private static SSLContext newContext(Provider provider, TestKeyStore keyStore) {
|
/external/replicaisland/src/com/replica/replicaisland/ |
GameRenderer.java | 324 public void setContext(Context newContext) { 325 mContext = newContext;
|
/build/blueprint/bootstrap/ |
doc.go | 58 // ctx := blueprint.NewContext()
|
/build/soong/android/ |
testing.go | 34 Context: blueprint.NewContext(),
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/ |
PackageDexUsageTests.java | 638 private TestData updateClassLoaderContext(String newContext) { 640 mPrimaryOrSplit, mUsedBy, newContext);
|
/frameworks/base/core/java/android/view/ |
LayoutInflater.java | 214 * @param newContext The new Context to use. 216 protected LayoutInflater(LayoutInflater original, Context newContext) { 217 mContext = newContext; 242 * @param newContext The new Context to associate with the new LayoutInflater. 248 public abstract LayoutInflater cloneInContext(Context newContext); [all...] |
/prebuilts/go/darwin-x86/src/cmd/go/internal/list/ |
list.go | 174 cachedCtxt = newContext(&cfg.BuildContext)
|