Searched defs:context (Results 151 - 175 of 1195) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DInputStreamSource.java63 public void process(FilterContext context) { argument
84 Frame output = context.getFrameManager().newFrame(mOutputFormat);
H A DObjectSource.java57 public void process(FilterContext context) { argument
64 mFrame = context.getFrameManager().newFrame(outputFormat);
79 public void tearDown(FilterContext context) { argument
84 public void fieldPortValueUpdated(String name, FilterContext context) { argument
H A DRetargetFilter.java62 public void process(FilterContext context) { argument
67 Frame output = context.getFrameManager().duplicateFrameToTarget(input, mTarget);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DDrawOverlayFilter.java62 public void prepare(FilterContext context) { argument
63 mProgram = ShaderProgram.createIdentity(context);
H A DFixedRotationFilter.java60 public void process(FilterContext context) { argument
70 mProgram = ShaderProgram.createIdentity(context);
98 Frame output = context.getFrameManager().newFrame(outputFormat);
H A DToGrayFilter.java72 protected Program getNativeProgram(FilterContext context) { argument
77 protected Program getShaderProgram(FilterContext context) { argument
83 ShaderProgram program = new ShaderProgram(context, mColorToGray4Shader);
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DDeviceDisconnectedReceiver.java44 public void onReceive(Context context, Intent intent) { argument
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpActivity.java40 private Context context; field in class:VideoDumpActivity
49 context = this;
69 mVideoView.setMediaController(new MediaController(context));
/frameworks/base/opengl/java/android/opengl/
H A DManagedEGLContext.java38 * class helps app developers participate in releasing their EGL context
59 public ManagedEGLContext(EGLContext context) { argument
60 mContext = context;
92 * of destroying the context to that thread.
94 public abstract void onTerminate(EGLContext context); argument
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
H A DFakeView.java52 public FakeView(Context context) { argument
53 super(context);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DStatusBarTouchProxy.java29 public StatusBarTouchProxy(Context context, AttributeSet attrs) { argument
30 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDoNotDisturb.java35 public DoNotDisturb(Context context) { argument
36 mContext = context;
37 mStatusBar = (StatusBarManager)context.getSystemService(Context.STATUS_BAR_SERVICE);
38 mPrefs = Prefs.read(context);
H A DLatestItemView.java26 public LatestItemView(Context context, AttributeSet attrs) { argument
27 super(context, attrs);
H A DRotationToggle.java29 public RotationToggle(Context context) { argument
30 super(context);
33 public RotationToggle(Context context, AttributeSet attrs) { argument
34 super(context, attrs);
37 public RotationToggle(Context context, AttributeSet attrs, int defStyle) { argument
38 super(context, attrs, defStyle);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCloseDragHandle.java28 public CloseDragHandle(Context context, AttributeSet attrs) { argument
29 super(context, attrs);
H A DQuickSettingsScrollView.java27 public QuickSettingsScrollView(Context context) { argument
28 super(context);
31 public QuickSettingsScrollView(Context context, AttributeSet attrs) { argument
32 super(context, attrs);
35 public QuickSettingsScrollView(Context context, AttributeSet attrs, int defStyle) { argument
36 super(context, attrs, defStyle);
H A DTickerView.java28 public TickerView(Context context, AttributeSet attrs) { argument
29 super(context, attrs);
H A DTrackingPatternView.java35 public TrackingPatternView(Context context, AttributeSet attrs) { argument
36 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCompatModeButton.java36 public CompatModeButton(Context context, AttributeSet attrs) { argument
37 this(context, attrs, 0);
40 public CompatModeButton(Context context, AttributeSet attrs, int defStyle) { argument
41 super(context, attrs);
45 mAM = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
H A DCurrentUserTracker.java29 public CurrentUserTracker(Context context) { argument
31 context.registerReceiver(this, filter);
40 public void onReceive(Context context, Intent intent) { argument
H A DPrefs.java32 public static SharedPreferences read(Context context) { argument
33 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE);
36 public static SharedPreferences.Editor edit(Context context) { argument
37 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE).edit();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationArea.java27 public NotificationArea(Context context, AttributeSet attrs) { argument
28 super(context, attrs);
H A DNotificationIconArea.java38 public NotificationIconArea(Context context, AttributeSet attrs) { argument
39 super(context, attrs);
45 public IconLayout(Context context, AttributeSet attrs) { argument
46 super(context, attrs);
H A DNotificationLinearLayout.java48 public NotificationLinearLayout(Context context, AttributeSet attrs) { argument
49 this(context, attrs, 0);
52 public NotificationLinearLayout(Context context, AttributeSet attrs, int defStyle) { argument
53 super(context, attrs, defStyle);
55 final Resources res = context.getResources();
59 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NotificationLinearLayout,
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbDisconnectedReceiver.java52 public void onReceive(Context context, Intent intent) { argument

Completed in 181 milliseconds

1234567891011>>