Searched refs:baseContext (Results 1 – 6 of 6) sorted by relevance
/external/icu/icu4c/source/common/ |
D | uenum.cpp | 36 if (en->baseContext != NULL) { in _getBuffer() 37 if (((_UEnumBuffer*) en->baseContext)->len < capacity) { in _getBuffer() 39 en->baseContext = uprv_realloc(en->baseContext, in _getBuffer() 41 if (en->baseContext == NULL) { in _getBuffer() 44 ((_UEnumBuffer*) en->baseContext)->len = capacity; in _getBuffer() 48 en->baseContext = uprv_malloc(sizeof(int32_t) + capacity); in _getBuffer() 49 if (en->baseContext == NULL) { in _getBuffer() 52 ((_UEnumBuffer*) en->baseContext)->len = capacity; in _getBuffer() 55 return (void*) & ((_UEnumBuffer*) en->baseContext)->data; in _getBuffer() 63 if (en->baseContext) { in uenum_close() [all …]
|
D | uenumimp.h | 110 void *baseContext; member
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/controller/ |
D | ContentProviderController.java | 27 Context baseContext = RuntimeEnvironment.application.getBaseContext(); in create() local 29 …ComponentName componentName = createRelative(baseContext.getPackageName(), contentProvider.getClas… in create() 34 baseContext in create() 63 Context baseContext = RuntimeEnvironment.application.getBaseContext(); in create() local 66 createRelative(baseContext.getPackageName(), contentProvider.getClass().getName()); in create() 67 baseContext in create() 71 contentProvider.attachInfo(baseContext, providerInfo); in create()
|
D | BackupAgentController.java | 22 Context baseContext = RuntimeEnvironment.application.getBaseContext(); in attach() local 24 ReflectionHelpers.ClassParameter.from(Context.class, baseContext)); in attach()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowActivity.java | 84 Context baseContext = RuntimeEnvironment.application.getBaseContext(); in callAttach() local 94 CharSequence activityTitle = activityInfo.loadLabel(baseContext.getPackageManager()); in callAttach() 103 ReflectionHelpers.ClassParameter.from(Context.class, baseContext), in callAttach() 123 ReflectionHelpers.ClassParameter.from(Context.class, baseContext), in callAttach() 144 ReflectionHelpers.ClassParameter.from(Context.class, baseContext), in callAttach() 167 ReflectionHelpers.ClassParameter.from(Context.class, baseContext), in callAttach() 191 ReflectionHelpers.ClassParameter.from(Context.class, baseContext), in callAttach() 217 ReflectionHelpers.ClassParameter.from(Context.class, baseContext), in callAttach()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | ServerImpl.java | 502 Context baseContext = statsTraceCtx.serverFilterContext(rootContext); in createContext() local 505 return baseContext.withCancellation(); in createContext() 508 Context.CancellableContext context = baseContext.withDeadlineAfter( in createContext()
|