Searched defs:context (Results 126 - 150 of 1764) sorted by relevance

1234567891011>>

/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dcodegen.ml9 let context = global_context () var
10 let the_module = create_module context "my cool jit"
11 let builder = builder context
13 let double_type = double_type context
85 let bb = append_block context "entry" the_function in
/external/llvm/test/Bindings/OCaml/
H A Danalysis.ml15 let context = global_context () var
24 let fty = function_type (void_type context) [| |] in
25 let m = create_module context "valid_m" in
27 let at_entry = builder_at_end context (entry_block fn) in
H A Dlinker.ml16 let context = global_context () var
17 let void_type = Llvm.void_type context
34 let m = create_module context name in
36 ignore (build_ret_void (builder_at_end context (entry_block fn)));
H A Dpassmgr_builder.ml16 let context = global_context () var
17 let void_type = Llvm.void_type context
31 let m = create_module context filename
H A Dscalar_opts.ml17 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)));
H A Dvectorize.ml17 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/
H A Dlp_bld_init.h46 LLVMContextRef context; member in struct:gallivm_state
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dcontext.hpp30 typedef struct _cl_context context; typedef in namespace:clover
/external/mesa3d/src/gallium/state_trackers/va/
H A Dva_picture.c36 vlVaBeginPicture(VADriverContextP ctx, VAContextID context, VASurfaceID render_target) argument
45 vlVaRenderPicture(VADriverContextP ctx, VAContextID context, VABufferID *buffers, int num_buffers) argument
54 vlVaEndPicture(VADriverContextP ctx, VAContextID context) argument
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dblock.c38 Status XvMCCreateBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCBlockArray *blocks) argument
42 if (!context)
49 blocks->context_id = context->context_id;
68 Status XvMCCreateMacroBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCMacroBlockArray *blocks) argument
72 if (!context)
79 blocks->context_id = context->context_id;
/external/mesa3d/src/mapi/glapi/
H A Dglapi.c56 _glapi_set_context(void *context) argument
58 u_current_set_user((const void *) context);
/external/messageformat/java/com/android/messageformat/
H A DMessageFormat.java56 * @param context Android context object
60 public static final String formatNamedArgs(Context context, int id, Object... nameValuePairs) { argument
62 context.getResources().getString(id), nameValuePairs);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DConverter.java19 Object convert(Object value, Class target, Object context); argument
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlChangeListener.java41 public void discardedTag(@Nullable T context, String elementName); argument
48 @Nullable T context, String tagName, String... attributeNames);
47 discardedAttributes( @ullable T context, String tagName, String... attributeNames) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DMultiTouchFilter.java34 public boolean supportsMultitouch(Context context) { argument
36 PackageManager packageManager = context.getPackageManager();
H A DTouchFilter.java26 public boolean supportsMultitouch(Context context) { argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricConfigs.java11 public void onReceive(Context context, Intent intent) { argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAnimationUtils.java17 public static Animation loadAnimation(Context context, int id) { argument
H A DShadowMenuInflater.java18 private Context context; field in class:ShadowMenuInflater
20 public void __constructor__(Context context) { argument
21 this.context = context;
26 shadowOf(context.getApplicationContext()).getResourceLoader().inflateMenu(context, resource, root);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/test/
H A DConfigTestReceiver.java10 public void onReceive(Context context, Intent intent) { argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAbsSeekBarTest.java26 public TestAbsSeekBar(Context context) { argument
27 super(context);
H A DHtmlTest.java19 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/src/test/java/com/xtremelabs/robolectric/util/
H A DCustomView.java11 public CustomView(Context context, AttributeSet attrs) { argument
12 super(context, attrs);
13 inflate(context, R.layout.inner_merge, this);
H A DCustomView2.java10 public CustomView2(Context context, AttributeSet attrs) { argument
11 super(context, attrs);
H A DTestBroadcastReceiver.java8 public Context context; field in class:TestBroadcastReceiver
12 public void onReceive(Context context, Intent intent) { argument
13 this.context = context;

Completed in 340 milliseconds

1234567891011>>