Searched refs:filter (Results 176 - 197 of 197) sorted by relevance

12345678

/frameworks/base/tools/aapt/
H A DResourceTable.cpp2584 ResourceFilter filter; local
2585 status_t err = filter.parse(bundle->getConfigurations());
2647 if (filterable && !filter.match(config)) {
2789 if (filterable && !filter.match(cl->getEntries().keyAt(ci))) {
2793 if (filterable && !filter.match(cl->getEntries().keyAt(cj))) {
2835 if (filterable && !filter.match(config)) {
H A DAaptAssets.cpp2194 count = filter(bundle);
2396 status_t AaptAssets::filter(Bundle* bundle) function in class:AaptAssets
2416 printf("Applying required filter: %s\n",
2420 printf("Applying preferred filter: %s\n",
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java1489 IntentFilter filter = new IntentFilter();
1490 filter.addAction(KeyChain.ACTION_STORAGE_CHANGED);
1493 context.getApplicationContext().registerReceiver(sTrustStorageListener, filter);
1520 IntentFilter filter = new IntentFilter();
1521 filter.addAction(Proxy.PROXY_CHANGE_ACTION);
1524 sProxyReceiver, filter);
1608 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
1609 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
1610 filter.addDataScheme("package");
1612 context.getApplicationContext().registerReceiver(packageListener, filter);
[all...]
/frameworks/base/services/input/
H A DInputReader.cpp3854 // most recent touch within the screen area. The idea is to filter out stray
6134 // To eliminate noise while the joystick is at rest, filter out small variations
6136 axis.filter = axis.flat * 0.25f;
6322 if (force || hasValueChangedSignificantly(axis.filter,
6328 if (force || hasValueChangedSignificantly(axis.filter,
6339 float filter, float newValue, float currentValue, float min, float max) {
6344 if (fabs(newValue - currentValue) > filter
6345 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
6346 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
6347 || hasMovedNearerToValueWithinFilteredRange(filter, newValu
6338 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6354 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmDataConnectionTracker.java2077 // install reconnect intent filter for this data connection.
2078 IntentFilter filter = new IntentFilter();
2079 filter.addAction(INTENT_RECONNECT_ALARM + '.' + id);
2080 mPhone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone);
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java1916 public CharSequence filter( method in class:NumberPicker.InputTextFilter
1919 CharSequence filtered = super.filter(source, start, end, dest, dstart, dend);
H A DTextView.java3459 CharSequence out = mFilters[i].filter(text, 0, text.length(), EMPTY_SPANNED, 0, 0);
5289 * so that if an input filter changed the error, we leave
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java519 BroadcastFilter filter, List<BroadcastFilter> dest) {
520 IBinder target = filter.receiverList.receiver.asBinder();
530 protected BroadcastFilter newResult(BroadcastFilter filter, int match, int userId) {
531 if (userId == UserHandle.USER_ALL || filter.owningUserId == UserHandle.USER_ALL
532 || userId == filter.owningUserId) {
533 return super.newResult(filter, match, userId);
544 protected String packageForFilter(BroadcastFilter filter) {
545 return filter.packageName;
5759 // foreground app. We may filter others if the caller has
11266 private final List getStickiesLocked(String action, IntentFilter filter, argument
11311 registerReceiver(IApplicationThread caller, String callerPackage, IIntentReceiver receiver, IntentFilter filter, String permission, int userId) argument
[all...]
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h886 GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
888 typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
/frameworks/base/core/java/android/app/
H A DIActivityManager.java82 IIntentReceiver receiver, IntentFilter filter,
81 registerReceiver(IApplicationThread caller, String callerPackage, IIntentReceiver receiver, IntentFilter filter, String requiredPermission, int userId) argument
H A DActivityManagerNative.java302 IntentFilter filter = IntentFilter.CREATOR.createFromParcel(data);
305 Intent intent = registerReceiver(app, packageName, rec, filter, perm, userId);
2089 IntentFilter filter, String perm, int userId) throws RemoteException
2097 filter.writeToParcel(data, 0);
2087 registerReceiver(IApplicationThread caller, String packageName, IIntentReceiver receiver, IntentFilter filter, String perm, int userId) argument
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h616 virtual void setupColorFilter(SkiaColorFilter* filter);
H A DDisplayListRenderer.cpp1830 void DisplayListRenderer::setupColorFilter(SkiaColorFilter* filter) { argument
1832 addColorFilter(filter);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java646 IntentFilter filter = new IntentFilter();
647 filter.addAction(Intent.ACTION_SCREEN_ON);
648 filter.addAction(Intent.ACTION_SCREEN_OFF);
649 context.registerReceiver(mIntentReceiver, filter);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
H A DBackDropperFilter.java492 /** Overall filter state */
505 public void onLearningDone(BackDropperFilter filter); argument
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java1776 // TODO - don't filter by priority now - nice optimization but risky
1975 final IntentFilter filter = new IntentFilter(Intent.ACTION_USER_PRESENT);
1976 mContext.registerReceiver(mUserPresentReceiver, filter);
H A DInputMethodManagerService.java685 final IntentFilter filter = new IntentFilter();
686 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
695 }, filter);
/frameworks/base/
H A DAndroid.mk46 LOCAL_SRC_FILES := $(filter-out \
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java445 CharSequence repl = mFilters[i].filter(tb, tbstart, tbend, this, start, end);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h197 void GLTrace_glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
H A Dgltrace_api.cpp7106 void GLTrace_glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { argument
7166 // copy argument filter
7170 arg_filter->add_intvalue((int)filter);
7175 glContext->hooks->gl.glBlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java827 IntentFilter filter = new IntentFilter();
828 filter.addAction(DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED);
829 mContext.registerReceiver(mBroadcastReceiver, filter);
5426 public void setInputFilter(IInputFilter filter) { argument
5430 mInputManager.setInputFilter(filter);

Completed in 567 milliseconds

12345678