Searched defs:filter (Results 1 - 25 of 146) sorted by last modified time

123456

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DDrawableWrapper.java71 public void setFilterBitmap(boolean filter) { argument
72 mDrawable.setFilterBitmap(filter);
H A DTintManager.java188 // First, lets see if the cache already contains the color filter
189 PorterDuffColorFilter filter = COLOR_FILTER_CACHE.get(color, tintMode);
191 if (filter == null) {
192 // Cache miss, so create a color filter and add it to the cache
193 filter = new PorterDuffColorFilter(color, tintMode);
194 COLOR_FILTER_CACHE.put(color, tintMode, filter);
197 // Finally set the color filter
198 drawable.setColorFilter(filter);
394 PorterDuffColorFilter put(int color, PorterDuff.Mode mode, PorterDuffColorFilter filter) { argument
395 return put(generateCacheKey(color, mode), filter);
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDescriptor.java367 * Adds a {@link MediaControlIntent media control intent} filter for the route.
369 public Builder addControlFilter(IntentFilter filter) { argument
370 if (filter == null) {
371 throw new IllegalArgumentException("filter must not be null");
377 if (!mControlFilters.contains(filter)) {
378 mControlFilters.add(filter);
392 for (IntentFilter filter : filters) {
393 addControlFilter(filter);
/frameworks/volley/src/com/android/volley/
H A DRequestQueue.java174 * A simple predicate or filter interface for Requests, for use by
182 * Cancels all requests in this queue for which the given filter applies.
183 * @param filter The filtering function to use
185 public void cancelAll(RequestFilter filter) { argument
188 if (filter.apply(request)) {
/frameworks/support/v4/donut/android/support/v4/graphics/drawable/
H A DRoundedBitmapDrawable.java202 public void setFilterBitmap(boolean filter) { argument
203 mPaint.setFilterBitmap(filter);
/frameworks/support/v4/java/android/support/v4/content/
H A DLocalBroadcastManager.java48 final IntentFilter filter; field in class:LocalBroadcastManager.ReceiverRecord
53 filter = _filter;
62 builder.append(" filter=");
63 builder.append(filter);
129 * @param filter Selects the Intent broadcasts to be received.
133 public void registerReceiver(BroadcastReceiver receiver, IntentFilter filter) { argument
135 ReceiverRecord entry = new ReceiverRecord(filter, receiver);
141 filters.add(filter);
142 for (int i=0; i<filter.countActions(); i++) {
143 String action = filter
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java539 public void setColorFilter(ColorFilter filter) { argument
540 mPaint.setColorFilter(filter);
H A DSlidingPaneLayout.java1561 if (!filter(child) && (child.getVisibility() == View.VISIBLE)) {
1580 if (!filter(child)) {
1586 public boolean filter(View child) { method in class:SlidingPaneLayout.AccessibilityDelegate
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasClient.java542 public void setMessageType(byte filter) { argument
543 messageType = filter;
555 public void setRecipient(String filter) { argument
556 if ("".equals(filter)) {
559 recipient = filter;
563 public void setOriginator(String filter) { argument
564 if ("".equals(filter)) {
567 originator = filter;
571 public void setPriority(byte filter) { argument
572 priority = filter;
890 getMessagesListing(String folder, int parameters, MessagesFilter filter, int subjectLength) argument
919 getMessagesListing(String folder, int parameters, MessagesFilter filter, int subjectLength, int maxListCount, int listStartOffset) argument
[all...]
H A DBluetoothMasRequestGetMessagesListing.java42 BluetoothMasClient.MessagesFilter filter, int subjectLength, int maxListCount,
67 if (filter != null) {
68 if (filter.messageType != MessagesFilter.MESSAGE_TYPE_ALL) {
69 oap.add(OAP_TAGID_FILTER_MESSAGE_TYPE, filter.messageType);
72 if (filter.periodBegin != null) {
73 oap.add(OAP_TAGID_FILTER_PERIOD_BEGIN, filter.periodBegin);
76 if (filter.periodEnd != null) {
77 oap.add(OAP_TAGID_FILTER_PERIOD_END, filter.periodEnd);
80 if (filter.readStatus != MessagesFilter.READ_STATUS_ANY) {
81 oap.add(OAP_TAGID_FILTER_READ_STATUS, filter
41 BluetoothMasRequestGetMessagesListing(String folderName, int parameters, BluetoothMasClient.MessagesFilter filter, int subjectLength, int maxListCount, int listStartOffset) argument
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapClient.java179 /* 64-bit mask used to filter out VCard fields */
648 * @param filter bit mask which indicates which fields of the vCard shall be
656 public boolean pullPhoneBook(String pbName, long filter, byte format) { argument
657 return pullPhoneBook(pbName, filter, format, 0, 0);
686 * @param filter bit mask which indicates which fields of the vCard hall be
697 public boolean pullPhoneBook(String pbName, long filter, byte format, int maxListCount, argument
699 BluetoothPbapRequest req = new BluetoothPbapRequestPullPhoneBook(pbName, filter, format,
829 * @param filter bit mask of the vCard fields that shall be included in the
837 public boolean pullVcardEntry(String handle, long filter, byte format) { argument
838 BluetoothPbapRequest req = new BluetoothPbapRequestPullVcardEntry(handle, filter, forma
[all...]
H A DBluetoothPbapRequestPullPhoneBook.java42 public BluetoothPbapRequestPullPhoneBook(String pbName, long filter, byte format, argument
65 if (filter != 0) {
66 oap.add(OAP_TAGID_FILTER, filter);
H A DBluetoothPbapRequestPullVcardEntry.java40 public BluetoothPbapRequestPullVcardEntry(String handle, long filter, byte format) { argument
53 if (filter != 0) {
54 oap.add(OAP_TAGID_FILTER, filter);
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java195 private static int filter(EventRecurrence r, Time iterator) method in class:RecurrenceProcessor
297 // Not allowed, filter it out.
309 // if we got to here, we didn't filter it out
988 // filter and then add
990 // passing the "end" date) unless the filter
992 int filtered = filter(r, generated);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java102 public DirectoryFilter filter; field in class:BaseRecipientAdapter.DirectorySearchParams
201 * An asynchronous filter used for loading two data sets: email rows from the local
229 Log.w(TAG, "null cursor returned for default Email filter query.");
338 * An asynchronous filter that performs search in a particular directory.
694 if (params.filter == null) {
695 params.filter = new DirectoryFilter(params);
697 params.filter.setLimit(limit);
698 params.filter.filter(constraint);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp6870 void GLTrace_glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { argument
6930 // copy argument filter
6934 arg_filter->add_intvalue((int)filter);
6939 glContext->hooks->gl.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
15479 void GLTrace_glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { argument
15539 // copy argument filter
15543 arg_filter->add_intvalue((int)filter);
15548 glContext->hooks->gl.glBlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
22174 void GLTrace_glBlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { argument
22234 // copy argument filter
[all...]
/frameworks/native/services/inputflinger/
H A DInputReader.cpp3975 // most recent touch within the screen area. The idea is to filter out stray
6344 // To eliminate noise while the joystick is at rest, filter out small variations
6346 axis.filter = axis.fuzz ? axis.fuzz : axis.flat * 0.25f;
6546 if (force || hasValueChangedSignificantly(axis.filter,
6552 if (force || hasValueChangedSignificantly(axis.filter,
6563 float filter, float newValue, float currentValue, float min, float max) {
6568 if (fabs(newValue - currentValue) > filter
6569 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, min)
6570 || hasMovedNearerToValueWithinFilteredRange(filter, newValue, currentValue, max)
6571 || hasMovedNearerToValueWithinFilteredRange(filter, newValu
6562 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6578 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h149 // in order to filter out accidental virtual key presses due to swiping gestures
1800 float filter; // filter out small variations of this size member in struct:android::JoystickInputMapper::Axis
1822 this->filter = 0;
1843 static bool hasValueChangedSignificantly(float filter,
1845 static bool hasMovedNearerToValueWithinFilteredRange(float filter,
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.cpp185 GLenum filter = GL_NEAREST; local
187 filter = GL_LINEAR;
191 glTexParameterx(target, GL_TEXTURE_MAG_FILTER, filter);
192 glTexParameterx(target, GL_TEXTURE_MIN_FILTER, filter);
H A DGLES20RenderEngine.cpp159 GLenum filter = GL_NEAREST; local
161 filter = GL_LINEAR;
165 glTexParameteri(target, GL_TEXTURE_MAG_FILTER, filter);
166 glTexParameteri(target, GL_TEXTURE_MIN_FILTER, filter);
/frameworks/compile/mclinker/include/mcld/
H A DGeneralOptions.h373 // ----- filter and auxiliary filter ----- //
377 const std::string& filter() const function in class:mcld::GeneralOptions
/frameworks/ex/common/java/com/android/common/
H A DRfc822InputFilter.java33 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, method in class:Rfc822InputFilter
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java106 public DirectoryPartitionFilter filter; field in class:BaseEmailAddressAdapter.DirectoryPartition
159 * An asynchronous filter used for loading two data sets: email rows from the local
208 * An asynchronous filter that performs search in a particular directory.
298 * displayed temporarily while the corresponding filter is running.
430 // The filter has loaded results for the default partition too.
468 if (partition.filter == null) {
469 partition.filter = new DirectoryPartitionFilter(i, partition.directoryId);
471 partition.filter.setLimit(limit);
472 partition.filter.filter(constrain
[all...]
/frameworks/ex/framesequence/src/android/support/rastermill/
H A DFrameSequenceDrawable.java389 public void setFilterBitmap(boolean filter) { argument
390 mPaint.setFilterBitmap(filter);
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp214 // A locale (as specified in the filter) is an underscore separated name such
1070 count = current->filter(bundle);
1131 count = filter(bundle);
1334 status_t AaptAssets::filter(Bundle* bundle) function in class:AaptAssets
1359 printf("Applying required filter: %s\n",
1363 printf("Applying preferred density filter: %s\n",

Completed in 701 milliseconds

123456