/external/llvm/test/Bindings/OCaml/ |
ipo.ml | 17 let context = global_context () var 18 let void_type = Llvm.void_type context 19 let i8_type = Llvm.i8_type context 33 let m = create_module context filename 44 ignore (build_ret (const_int i8_type 4) (builder_at_end context (entry_block fn))); 45 let b = builder_at_end context (entry_block fn2) in
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_init.h | 49 LLVMContextRef context; member in struct:gallivm_state 62 gallivm_create(const char *name, LLVMContextRef context);
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
program.hpp | 29 #include "core/context.hpp" 41 program(clover::context &ctx, 43 program(clover::context &ctx, 79 const intrusive_ref<clover::context> context; member in class:clover::program
|
/external/mesa3d/src/gallium/state_trackers/va/ |
context.c | 209 vlVaContext *context; local 227 context = CALLOC(1, sizeof(vlVaContext)); 228 if (!context) 232 context->decoder = NULL; 234 FREE(context); 238 context->templat.profile = config->profile; 239 context->templat.entrypoint = config->entrypoint; 240 context->templat.chroma_format = PIPE_VIDEO_CHROMA_FORMAT_420; 241 context->templat.width = picture_width; 242 context->templat.height = picture_height 305 vlVaContext *context; local [all...] |
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
test_context.c | 45 XvMCContext context = {0}; local 74 /* Test NULL context */ 79 assert(XvMCCreateContext(display, -1, surface_type_id, width, height, XVMC_DIRECT, &context) == XvBadPort); 81 assert(XvMCCreateContext(display, port_num, -1, width, height, XVMC_DIRECT, &context) == BadMatch); 83 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, -1, &context) == BadValue); 85 assert(XvMCCreateContext(display, port_num, surface_type_id, 16384, height, XVMC_DIRECT, &context) == BadValue); 87 assert(XvMCCreateContext(display, port_num, surface_type_id, width, 16384, XVMC_DIRECT, &context) == BadValue); 89 assert(XvMCCreateContext(display, port_num, surface_type_id, 16384, 16384, XVMC_DIRECT, &context) == BadValue); 91 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success); 92 /* Test context id assigned * [all...] |
test_surface.c | 45 XvMCContext context; local 75 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success); 77 /* Test NULL context */ 80 assert(XvMCCreateSurface(display, &context, NULL) == XvMCBadSurface); 82 assert(XvMCCreateSurface(display, &context, &surface) == Success); 85 /* Test context id assigned and correct */ 86 assert(surface.context_id == context.context_id); 96 assert(XvMCDestroyContext(display, &context) == Success);
|
/external/mockito/src/test/java/org/mockito/internal/verification/checkers/ |
AtLeastXNumberOfInvocationsCheckerTest.java | 29 InOrderContext context = new InOrderContextImpl(); local 35 checkAtLeastNumberOfInvocations(asList(invocation, invocationTwo), new InvocationMatcher(invocation), 1, context); local 43 InOrderContext context = new InOrderContextImpl(); local 54 checkAtLeastNumberOfInvocations(asList(invocation, invocationTwo), new InvocationMatcher(invocation), 2, context); local
|
/external/pdfium/core/fxcodec/codec/ |
ccodec_gifmodule.cpp | 20 std::unique_ptr<CCodec_GifModule::Context> CCodec_GifModule::Start( 25 CFX_GifDecodeStatus CCodec_GifModule::ReadHeader(Context* pContext, 32 auto* context = static_cast<CFX_GifContext*>(pContext); local 33 CFX_GifDecodeStatus ret = context->ReadHeader(); 37 *width = context->width_; 38 *height = context->height_; 39 *pal_num = (2 << context->global_pal_exp_); 40 *pal_pp = context->global_palette_.empty() ? nullptr 41 : context->global_palette_.data(); 42 *bg_index = context->bc_index_ 48 auto* context = static_cast<CFX_GifContext*>(pContext); local 58 auto* context = static_cast<CFX_GifContext*>(pContext); local 81 auto* context = static_cast<CFX_GifContext*>(pContext); local 88 auto* context = static_cast<CFX_GifContext*>(pContext); local [all...] |
/external/pdfium/fxjs/xfa/ |
cjx_model.cpp | 86 void CJX_Model::context(CFXJSE_Value* pValue, function in class:CJX_Model
|
/external/python/cpython2/Mac/Modules/ |
autoGIL.c | 57 CFRunLoopObserverContext context = {0, NULL, NULL, NULL, NULL}; local 84 context.info = (void *)p_tstate; 85 context.release = infoRelease; 90 1, 0, autoGILCallback, &context);
|
/external/replicaisland/src/com/replica/replicaisland/ |
ContextParameters.java | 19 import android.content.Context; 21 /** Contains global (but typically constant) parameters about the current operating context */ 25 public Context context; field in class:ContextParameters
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
HtmlTest.java | 5 import android.content.Context; 19 private Context context; field in class:HtmlTest 23 context = new Activity(); 28 TextView textView = new TextView(context); 35 EditText editText = new EditText(context);
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
ShadowListPopupWindowTest.java | 5 import android.content.Context; 17 Context context = RuntimeEnvironment.application; local 18 ListPopupWindow popupWindow = new ListPopupWindow(context); 20 popupWindow.setAnchorView(new View(context));
|
ShadowRestrictionsManagerTest.java | 7 import android.content.Context; 25 private Context context; field in class:ShadowRestrictionsManagerTest 29 context = RuntimeEnvironment.application; 30 restrictionsManager = (RestrictionsManager) context.getSystemService(Context.RESTRICTIONS_SERVICE); 47 .getManifestRestrictions(context.getPackageName()));
|
ViewInnerTextTest.java | 6 import android.content.Context; 18 private Context context; field in class:ViewInnerTextTest 22 context = RuntimeEnvironment.application; 27 LinearLayout top = new LinearLayout(context); 29 top.addView(new View(context)); 32 LinearLayout innerLayout = new LinearLayout(context); 48 LinearLayout top = new LinearLayout(context); 58 LinearLayout top = new LinearLayout(context); 71 TextView textView = new TextView(context); [all...] |
/external/selinux/libselinux/src/ |
label_support.c | 118 Sha1Context context; local 124 Sha1Initialise(&context); 125 Sha1Update(&context, digest->hashbuf, digest->hashbuf_size); 126 Sha1Finalise(&context, (SHA1_HASH *)digest->digest);
|
/external/selinux/libselinux/utils/ |
selabel_lookup.c | 36 char *validate = NULL, *key = NULL, *context = NULL, *file = NULL; local 100 rc = selabel_lookup_raw(hnd, &context, key, type); 103 rc = selabel_lookup(hnd, &context, key, type); 111 "find a valid context.\n"); 115 "validate context, or key / type are " 123 printf("Default context: %s\n", context); 124 freecon(context);
|
/external/selinux/libsepol/include/sepol/policydb/ |
sidtab.h | 7 * of security context structures indexed by SID value. 13 #include <sepol/policydb/context.h> 21 context_struct_t context; /* security context structure */ member in struct:sidtab_node 44 context_struct_t * context); 51 context_struct_t * context, 58 context, void *args), 62 context_struct_t * context, /* IN */
|
/external/skia/bench/ |
GrMipMapBench.cpp | 35 GrContext* context = canvas->getGrContext(); variable 36 if (nullptr == context) { 42 fSurface = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
|
/external/skia/gm/ |
bitmaptiled.cpp | 16 GrContext* context = canvas->getGrContext(); local 17 if (!context) { 38 context->getResourceCacheLimits(&oldMaxResources, &oldMaxResourceBytes); 41 context->setResourceCacheLimits(oldMaxResources, newMaxResourceBytes); 64 context->setResourceCacheLimits(oldMaxResources, oldMaxResourceBytes);
|
crosscontextimage.cpp | 16 GrContext* context = canvas->getGrContext(); local 17 if (!context) { 28 context, encodedData, false, canvas->imageInfo().colorSpace()); 37 context, pixmap, false, canvas->imageInfo().colorSpace());
|
/external/skia/include/atlastext/ |
SkAtlasTextTarget.h | 49 SkAtlasTextContext* context() const { return fContext.get(); } function in class:SkAtlasTextTarget
|
/external/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/ |
SkQPActivity.java | 3 import android.content.Context; 29 Context context = getApplicationContext(); local 30 String outputDirPath = "/sdcard/Android/data/" + context.getPackageName(); 31 testRunner.runTests(context, outputDirPath);
|
/external/skia/tests/ |
DeviceTest.cpp | 76 GrContext* context = ctxInfo.grContext(); local 83 sk_sp<SkBaseDevice> gpuDev(SkGpuDevice::Make(context, SkBudgeted::kNo, ii, 111 image = image->makeTextureImage(context, legacyColorSpace);
|
GrContextFactoryTest.cpp | 21 // Test that if NVPR is requested, the context always has path rendering 22 // or the context creation fails. 27 GrContext* context = testFactory.get(ctxType, local 29 if (!context) { 34 context->caps()->shaderCaps()->pathRenderingSupport()); 39 // Test that if NVPR is explicitly disabled, the context has no path rendering support. 44 GrContext* context = local 46 if (context) { 49 !context->caps()->shaderCaps()->pathRenderingSupport()); 55 // Test that if sRGB support is requested, the context always has that capabilit 62 GrContext* context = local [all...] |