HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 501 - 525 of 13136) sorted by null

<<21222324252627282930>>

  /external/libvpx/libvpx/
md5_utils.h 40 void MD5Init(struct MD5Context *context);
41 void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
42 void MD5Final(unsigned char digest[16], struct MD5Context *context);
  /external/mesa3d/src/gallium/state_trackers/va/
va_picture.c 36 vlVaBeginPicture(VADriverContextP ctx, VAContextID context, VASurfaceID render_target)
45 vlVaRenderPicture(VADriverContextP ctx, VAContextID context, VABufferID *buffers, int num_buffers)
54 vlVaEndPicture(VADriverContextP ctx, VAContextID context)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLayoutInflater.java 4 import android.content.Context;
24 private Context context; field in class:ShadowLayoutInflater
26 private static LayoutInflater bind(LayoutInflater layoutInflater, Context context) {
27 shadowOf(layoutInflater).context = context;
32 public static LayoutInflater from(Context context) {
33 return bind(instances.getInstance(context), context)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
CustomView.java 3 import android.content.Context;
11 public CustomView(Context context, AttributeSet attrs) {
12 super(context, attrs);
13 inflate(context, R.layout.inner_merge, this);
  /external/skia/src/gpu/
GrRenderTarget.cpp 21 // go through context so that all necessary flushing occurs
22 GrContext* context = this->getContext(); local
23 if (NULL == context) {
26 return context->readRenderTargetPixels(this,
37 // go through context so that all necessary flushing occurs
38 GrContext* context = this->getContext(); local
39 if (NULL == context) {
42 context->writeRenderTargetPixels(this,
49 // go through context so that all necessary flushing occurs
50 GrContext* context = this->getContext() local
59 GrContext* context = this->getContext(); local
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
ExceptionWithContext.java 31 * Exception which carries around structured context.
35 /** non-null; human-oriented context of the exception */
36 private StringBuffer context; field in class:ExceptionWithContext
39 * Augments the given exception with the given context, and return the
45 * @param str non-null; context to add
91 String ctx = ((ExceptionWithContext) cause).context.toString();
92 context = new StringBuffer(ctx.length() + 200);
93 context.append(ctx);
95 context = new StringBuffer(200);
110 out.println(context);
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
IPolicy.java 19 import android.content.Context;
32 public Window makeNewWindow(Context context);
34 public LayoutInflater makeNewLayoutInflater(Context context);
38 public FallbackEventHandler makeNewFallbackEventHandler(Context context);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
AlphaBlendFilter.java 48 protected Program getNativeProgram(FilterContext context) {
53 protected Program getShaderProgram(FilterContext context) {
54 return new ShaderProgram(context, mAlphaBlendShader);
BlendFilter.java 48 protected Program getNativeProgram(FilterContext context) {
53 protected Program getShaderProgram(FilterContext context) {
54 return new ShaderProgram(context, mBlendShader);
BrightnessFilter.java 45 protected Program getNativeProgram(FilterContext context) {
50 protected Program getShaderProgram(FilterContext context) {
51 return new ShaderProgram(context, mBrightnessShader);
ContrastFilter.java 48 protected Program getNativeProgram(FilterContext context) {
53 protected Program getShaderProgram(FilterContext context) {
54 return new ShaderProgram(context, mContrastShader);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPreloadReceiver.java 20 import android.content.Context;
25 public void onReceive(Context context, Intent intent) {
27 RecentTasksLoader.getInstance(context).preloadRecentTasksList();
29 RecentTasksLoader.getInstance(context).cancelPreloadingRecentTasksList();
  /hardware/intel/common/libva/va/
va_backend_vpp.h 43 VAContextID context,
51 VAContextID context,
60 VAContextID context,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
md5_utils.h 40 void MD5Init(struct MD5Context *context);
41 void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
42 void MD5Final(unsigned char digest[16], struct MD5Context *context);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionContextTest.java 23 SSLContext context = SSLContext.getInstance("TLS"); local
24 context.init(null, null, null);
25 SSLSessionContext sc = context
47 SSLContext context = SSLContext.getInstance("TLS"); local
48 context.init(null, null, null);
49 SSLSessionContext sc = context
70 SSLContext context = SSLContext.getInstance("TLS"); local
71 context.init(null, null, null);
72 SSLSessionContext sc = context
88 SSLContext context = SSLContext.getInstance("TLS") local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
MockVendorPolicy.java 19 import android.content.Context;
38 public static void inject(Context context) {
39 VendorPolicyLoader.injectPolicyForTest(context, context.getPackageName(),
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlContainer.java 21 import android.content.Context;
26 public abstract void initialize(Context context, PreferenceGroup group,
29 public IndicatorControlContainer(Context context, AttributeSet attrs) {
30 super(context, attrs);
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageStatusReceiver.java 21 import android.content.Context;
29 public void onReceive(Context context, Intent intent) {
31 intent.setClass(context, MessageStatusService.class);
32 context.startService(intent);
  /packages/apps/OneTimeInitializer/src/com/android/onetimeinitializer/
OneTimeInitializerReceiver.java 20 import android.content.Context;
34 public void onReceive(Context context, Intent intent) {
36 context.startService(new Intent(context, OneTimeInitializerService.class));
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
CursorFactoryListAdapter.java 22 import android.content.Context;
34 public View newView(Context context, ViewGroup parent);
35 public void bindView(View view, Context context, Cursor cursor);
49 public View newView(Context context, ViewGroup parent) {
50 LayoutInflater inflater = (LayoutInflater) context.getSystemService(
51 Context.LAYOUT_INFLATER_SERVICE);
55 public void bindView(View view, Context context, Cursor cursor)
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebugReceiver.java 20 import android.content.Context;
34 public void onReceive(Context context, Intent intent) {
36 i.setClass(context, CalendarDebug.class);
38 context.startActivity(i);
  /hardware/qcom/audio/post_proc/
equalizer.c 85 int equalizer_get_band_level(equalizer_context_t *context, int32_t band)
88 context->band_levels[band] * 100);
89 return context->band_levels[band] * 100;
92 int equalizer_set_band_level(equalizer_context_t *context, int32_t band,
101 context->band_levels[band] = level;
102 context->preset = PRESET_CUSTOM;
104 offload_eq_set_preset(&(context->offload_eq), PRESET_CUSTOM);
105 offload_eq_set_bands_level(&(context->offload_eq),
108 context->band_levels);
109 if (context->ctl
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmNotifications.java 22 import android.content.Context;
36 public static void registerNextAlarmWithAlarmManager(Context context, AlarmInstance instance) {
41 AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
44 PendingIntent operation = PendingIntent.getBroadcast(context, 0 /* requestCode */,
45 AlarmStateManager.createIndicatorIntent(context), flags);
51 PendingIntent viewIntent = PendingIntent.getActivity(context, instance.hashCode(),
52 createViewAlarmIntent(context, instance), PendingIntent.FLAG_UPDATE_CURRENT);
62 public static void showLowPriorityNotification(Context context, AlarmInstance instance)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 89 >>> c = Context()
120 'Decimal', 'Context',
170 handle -- Called when context._raise_error is called and the
172 context. More arguments can be given, those being after
174 context._raise_error(NewError, '(-x)!', self._sign) would
175 call NewError().handle(context, self._sign).)
180 def handle(self, context, *args):
219 def handle(self, context, *args):
222 return ans._fix_nan(context)
232 def handle(self, context, *args)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 89 >>> c = Context()
120 'Decimal', 'Context',
170 handle -- Called when context._raise_error is called and the
172 context. More arguments can be given, those being after
174 context._raise_error(NewError, '(-x)!', self._sign) would
175 call NewError().handle(context, self._sign).)
180 def handle(self, context, *args):
219 def handle(self, context, *args):
222 return ans._fix_nan(context)
232 def handle(self, context, *args)
    [all...]

Completed in 359 milliseconds

<<21222324252627282930>>