/external/libmojo/mojo/edk/system/ |
awakable_list.h | 39 void Add(Awakable* awakable, MojoHandleSignals signals, uintptr_t context); 45 uintptr_t context, 47 MojoResult RemoveWatcher(uintptr_t context); 51 AwakeInfo(Awakable* awakable, MojoHandleSignals signals, uintptr_t context) 52 : awakable(awakable), signals(signals), context(context) {} 56 uintptr_t context; member in struct:mojo::edk::AwakableList::AwakeInfo
|
/external/libunwind/src/unwind/ |
RaiseException.c | 34 struct _Unwind_Context context; local 46 if (_Unwind_InitContext (&context, &uc) < 0) 56 if (unw_step (&context.cursor) <= 0) 63 if (unw_get_proc_info (&context.cursor, &pi) < 0) 74 &context); 94 if (unw_get_reg (&context.cursor, UNW_REG_IP, &ip) < 0) 104 if (unw_init_local (&context.cursor, &uc) < 0) 107 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
|
/external/libunwind_llvm/test/ |
libunwind_01.pass.cpp | 5 unw_context_t context; local 6 unw_getcontext(&context); 9 unw_init_local(&cursor, &context);
|
/external/llvm/test/Bindings/OCaml/ |
linker.ml | 16 let context = global_context () var 17 let void_type = Llvm.void_type context 33 set_diagnostic_handler context (Some diagnostic_handler); 38 let m = create_module context name in 40 ignore (build_ret_void (builder_at_end context (entry_block fn)));
|
scalar_opts.ml | 17 let context = global_context () var 18 let void_type = Llvm.void_type context 32 let m = create_module context filename 42 ignore (build_ret_void (builder_at_end context (entry_block fn)));
|
vectorize.ml | 17 let context = global_context () var 18 let void_type = Llvm.void_type context 32 let m = create_module context filename 42 ignore (build_ret_void (builder_at_end context (entry_block fn)));
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_assert.c | 65 LLVMContextRef context = gallivm->context; local 74 ret_type = LLVMVoidTypeInContext(context); 75 arg_types[0] = LLVMInt32TypeInContext(context); 76 arg_types[1] = LLVMPointerType(LLVMInt8TypeInContext(context), 0);
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
context.hpp | 31 class context : public ref_counter, public _cl_context { class in namespace:clover 41 context(const property_list &props, const ref_vector<device> &devs, 44 context(const context &ctx) = delete; 45 context & 46 operator=(const context &ctx) = delete; 49 operator==(const context &ctx) const; 51 operator!=(const context &ctx) const;
|
queue.hpp | 30 #include "core/context.hpp" 41 command_queue(clover::context &ctx, clover::device &dev, 54 const intrusive_ref<clover::context> context; member in class:clover::command_queue
|
sampler.hpp | 32 sampler(clover::context &ctx, bool norm_mode, 44 const intrusive_ref<clover::context> context; member in class:clover::sampler
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowMenuInflater.java | 3 import android.content.Context; 18 private Context context; field in class:ShadowMenuInflater 20 public void __constructor__(Context context) { 21 this.context = context; 26 shadowOf(context.getApplicationContext()).getResourceLoader().inflateMenu(context, resource, root);
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
ViewConfigurationTest.java | 18 Activity context = new Activity(); local 19 ViewConfiguration viewConfiguration = ViewConfiguration.get(context); 40 assertEquals(1f, context.getResources().getDisplayMetrics().density); 55 Activity context = new Activity(); local 56 shadowOf(context.getResources()).setDensity(1.5f); 57 ViewConfiguration viewConfiguration = ViewConfiguration.get(context);
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/ |
TestBroadcastReceiver.java | 4 import android.content.Context; 8 public Context context; field in class:TestBroadcastReceiver 12 public void onReceive(Context context, Intent intent) { 13 this.context = context;
|
/external/skia/gm/ |
discard.cpp | 39 GrContext* context = canvas->getGrContext(); variable 40 if (nullptr == context) { 48 auto surface = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
|
/external/skia/src/gpu/ |
GrTextureMaker.h | 30 GrTextureMaker(GrContext* context, int width, int height, bool isAlphaOnly) 32 , fContext(context) {} 65 GrContext* context() const { return fContext; } function in class:GrTextureMaker
|
/external/skia/tests/ |
GrTextureMipMapInvalidationTest.cpp | 30 GrContext* context = ctxInfo.grContext(); local 32 auto surf1 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info); 33 auto surf2 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info);
|
/external/skia/tools/fiddle/ |
draw.cpp | 31 GrContext* context = canvas->getGrContext(); local 32 if (context) { 33 sk_sp<SkImage> tmp = SkImage::MakeFromTexture(context, 41 sk_sp<SkSurface> tmp2 = SkSurface::MakeFromBackendTexture(context, 48 sk_sp<SkSurface> tmp3 = SkSurface::MakeFromBackendRenderTarget(context,
|
/external/skia/tools/sk_app/unix/ |
VulkanWindowContext_unix.cpp | 75 WindowContext* context = new VulkanWindowContext(displayParams, createVkSurface, canPresent, local 77 if (!context->isValid()) { 78 delete context; 81 return context;
|
/external/skqp/gm/ |
discard.cpp | 39 GrContext* context = canvas->getGrContext(); variable 40 if (nullptr == context) { 48 auto surface = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info);
|
/external/skqp/src/gpu/ |
GrTextureMaker.h | 42 GrTextureMaker(GrContext* context, int width, int height, bool isAlphaOnly) 44 , fContext(context) {} 77 GrContext* context() const { return fContext; } function in class:GrTextureMaker
|
/external/skqp/tests/ |
GrTextureMipMapInvalidationTest.cpp | 30 GrContext* context = ctxInfo.grContext(); local 32 auto surf1 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info); 33 auto surf2 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info);
|
/external/skqp/tools/fiddle/ |
draw.cpp | 31 GrContext* context = canvas->getGrContext(); local 32 if (context) { 33 sk_sp<SkImage> tmp = SkImage::MakeFromTexture(context, 41 sk_sp<SkSurface> tmp2 = SkSurface::MakeFromBackendTexture(context, 48 sk_sp<SkSurface> tmp3 = SkSurface::MakeFromBackendRenderTarget(context,
|
/external/skqp/tools/sk_app/unix/ |
VulkanWindowContext_unix.cpp | 75 WindowContext* context = new VulkanWindowContext(displayParams, createVkSurface, canPresent, local 77 if (!context->isValid()) { 78 delete context; 81 return context;
|
/external/swiftshader/src/OpenGL/libEGL/ |
Sync.hpp | 20 #include "Context.hpp" 30 explicit FenceSync(Context *context) : context(context) 33 context->addRef(); 38 context->release(); 39 context = nullptr; 42 void wait() { context->finish(); signal(); } 48 Context *context member in class:egl::FenceSync [all...] |
main.h | 29 class Context; 38 Context *context; member in struct:egl::Current 51 void setCurrentContext(Context *ctx); 52 Context *getCurrentContext();
|