Searched refs:filters (Results 1 - 25 of 163) sorted by relevance

1234567

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DFilterBar.js73 get filters()
78 set filters(filters)
80 filters = filters || {};
83 this._inputField.value = filters.text || "";
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DGraphicsLayerCARemote.cpp40 bool GraphicsLayerCARemote::filtersCanBeComposited(const FilterOperations& filters) argument
42 return PlatformCALayerRemote::filtersCanBeComposited(filters);
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/Proxy/
H A DFilterStack.pm4 # - filters: the list of (sub, filter) pairs that match the message,
6 # - current: the actual list of filters, which is computed during
15 # $isbody is true only for response-body filters stack
20 filters => [],
35 splice @{ $self->{filters} }, $idx, 0, @_;
43 splice @{ $self->{filters} }, $idx, 1;
52 push @{ $self->{filters} }, @_;
55 sub all { return @{ $_[0]->{filters} }; }
59 # select the filters that will be used on the message
67 # select the filters tha
[all...]
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.300/lib/HTTP/Proxy/
H A DFilterStack.pm4 # - filters: the list of (sub, filter) pairs that match the message,
6 # - current: the actual list of filters, which is computed during
15 # $isbody is true only for response-body filters stack
20 filters => [],
35 splice @{ $self->{filters} }, $idx, 0, @_;
43 splice @{ $self->{filters} }, $idx, 1;
52 push @{ $self->{filters} }, @_;
55 sub all { return @{ $_[0]->{filters} }; }
59 # select the filters that will be used on the message
67 # select the filters tha
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/multiplexer/
H A Dmultiplexer.tcl29 # filters to run at access (socket accept) time
32 # filters to run on data
33 set filters {}
77 variable filters
78 lappend filters $function
101 # Deletes a client from the client list, and runs exit filters.
166 variable filters
174 # do data filters
175 foreach f $filters {
191 # Sets up newly created connection after running access filters
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DFilters.pm9 # Andy Wardley <abw@wardley.org>, with a number of filters contributed
36 # standard filters, defined in one of the following forms:
46 # static filters
65 # dynamic filters
82 # name of module implementing plugin filters
234 my $filters = $self->{ FILTERS };
235 $filters = join('', map {
236 sprintf(" $format", $_, $filters->{ $_ });
237 } keys %$filters);
238 $filters
[all...]
/macosx-10.10.1/IOFireWireIP-226.2/KernelSource/IONetworkingFamily/
H A DIOFWController.cpp137 // Publish FireWire defined packet filters.
142 UInt32 filters; local
148 &filters) != kIOReturnSuccess )
153 num = OSNumber::withNumber(filters, sizeof(filters) * 8);
233 // Returns all the packet filters supported by the FireWire controller.
243 // a different set of filters should override this method.
250 UInt32 * filters) const
252 *filters = 0;
256 return getPacketFilters(filters);
[all...]
H A DIOFWInterface.cpp113 UInt32 filters = 0; local
119 filters = num->unsigned32BitValue();
121 return filters;
126 UInt32 filters)
136 if (( num = OSNumber::withNumber(filters, 32) ))
144 num->setValue(filters);
202 // Controller's Unicast (directed) and Broadcast filters should always
527 // Disable all Wake-On-LAN filters.
836 UInt32 filters,
851 (void *) filters, /* param
124 setFilters(OSDictionary *dict, const OSSymbol *group, UInt32 filters) argument
834 enableFilter(IONetworkController * ctr, const OSSymbol * group, UInt32 filters, IOOptionBits options) argument
907 disableFilter(IONetworkController * ctr, const OSSymbol * group, UInt32 filters, IOOptionBits options) argument
1052 unsigned long filters; local
[all...]
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dtestmime.c51 int cost; /* Cost of filters */
57 cups_array_t *filters; /* Filters for the file */ local
130 filters = mimeFilter2(mime, src, (size_t)srcinfo.st_size, dst, &cost);
132 if (!filters)
134 printf("No filters to convert from %s/%s to %s.\n", src->super,
143 for (filter = (mime_filter_t *)cupsArrayFirst(filters);
145 filter = (mime_filter_t *)cupsArrayNext(filters))
161 cupsArrayDelete(filters);
184 puts("MIME database filters:");
315 * 'add_ppd_filters()' - Add all filters fro
461 cups_array_t *filters; /* Filters to pstype */ local
[all...]
H A Dfilter.c23 * mime_compare_filters() - Compare two filters.
25 * mime_find_filters() - Find the filters to convert from one type to
116 if (!mime->filters)
117 mime->filters = cupsArrayNew((cups_array_func_t)mime_compare_filters, NULL);
119 if (!mime->filters)
135 cupsArrayAdd(mime->filters, temp);
153 cups_array_t * /* O - Array of filters to run */
157 int *cost) /* O - Cost of filters */
174 cups_array_t * /* O - Array of filters to run */
179 int *cost) /* O - Cost of filters */
181 cups_array_t *filters; /* Array of filters to run */ local
[all...]
H A Dcupsfilter.c77 cups_array_t *filters, const char *infile,
99 list_filters = 0; /* Just list the filters? */
110 int cost; /* Cost of filters */
119 cups_array_t *filters; /* Filters for the file */ local
125 int all_filters, /* Use all filters */
171 if (!strcmp(argv[i], "--list-filters"))
443 filters = cupsArrayNew(NULL, NULL);
444 cupsArrayAdd(filters, &GZIPFilter);
448 else if ((filters = mimeFilter(mime, src, dst, &cost)) == NULL)
456 cupsArrayInsert(filters,
917 exec_filters(mime_type_t *srctype, cups_array_t *filters, const char *infile, const char *outfile, const char *ppdfile, const char *printer, const char *user, const char *title, int num_options, cups_option_t *options) argument
[all...]
H A Dmime.c69 * Loop through filters and free them...
72 for (filter = (mime_filter_t *)cupsArrayFirst(mime->filters);
74 filter = (mime_filter_t *)cupsArrayNext(mime->filters))
87 * Free the types and filters arrays, and then the MIME database structure.
91 cupsArrayDelete(mime->filters);
118 if (!cupsArrayFind(mime->filters, filter))
122 cupsArrayRemove(mime->filters, filter);
205 mime_filter_t *first = (mime_filter_t *)cupsArrayFirst(mime->filters);
266 * Use @link mimeLoadTypes@ to load all types before you load the filters.
338 * Use @link mimeLoadFilters@ to load all filters afte
[all...]
/macosx-10.10.1/IONetworkingFamily-101/
H A DIOEthernetInterface.cpp111 UInt32 filters = 0; local
117 filters = num->unsigned32BitValue();
119 return filters;
126 UInt32 filters )
136 if (( num = OSNumber::withNumber(filters, 32) ))
144 num->setValue(filters);
213 // Cache the bit mask of wake filters supported by the driver.
219 // Retain the Disabled WOL filters OSNumber.
228 // Controller's Unicast (directed) and Broadcast filters should always
580 // Disable all Wake-On-LAN filters
888 enableFilter_Wrapper( IOEthernetInterface * self, IONetworkController * ctr, const OSSymbol * group, UInt32 filters, IOOptionBits options) argument
899 enableFilter(IONetworkController * ctr, const OSSymbol * group, UInt32 filters, IOOptionBits options) argument
952 disableFilter(IONetworkController * ctr, const OSSymbol * group, UInt32 filters, IOOptionBits options) argument
1099 unsigned long filters; local
1394 uint32_t filters = 0; local
[all...]
H A DIOEthernetController.cpp133 // Publish Ethernet defined packet filters.
143 // Supported WOL filters
151 // Disabled WOL filters
163 // Supported WOL filters
171 // Disabled WOL filters
255 // Returns all the packet filters supported by the Ethernet controller.
265 // a different set of filters should override this method.
272 UInt32 * filters) const
274 *filters = 0;
278 return getPacketFilters(filters);
[all...]
H A DIOEthernetController.h60 wake filters that are supported by the controller. */
67 group represents wake filters that are currently disabled.
74 @abstract All filters in the Wake-on-LAN filter group.
82 and setting of the corresponding packet filters. */
148 @abstract Gets the set of packet filters supported by the Ethernet
160 @param filters Pointer to the mask of supported filters returned by
168 UInt32 * filters) const;
171 @abstract Enables one of the supported packet filters from the
176 enabled. Requests to disable the Unicast or Broadcast filters ar
[all...]
/macosx-10.10.1/CPANInternal-159.1/Class-Trigger-0.14/inc/Test/
H A DBase.pm30 filters filters_delay filter_arguments
225 sub filters() { subroutine
231 my $filters = $self->_filters;
232 push @$filters, @_;
471 my ($type, $filters, $value) = splice(@parts, 0, 3);
474 $filters = '' unless defined $filters;
475 if ($filters =~ /:(\s|\z)/) {
478 ($filters, $value) = split /\s*:(?:\s+|\z)/, $filters,
[all...]
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkFileFilter.h66 * a list of file filters.
75 FileFilter *filters; /* Head of the filter list */ member in struct:FileFilterList
77 int numFilters; /* number of filters in the list */
H A DtkFileFilter.c54 flistPtr->filters = NULL;
85 FileFilterList *flistPtr, /* Stores the list of file filters. */
166 FileFilterList *flistPtr) /* List of file filters to free */
170 filterPtr=flistPtr->filters;
178 flistPtr->filters = NULL;
400 * The list of filters are updated in flistPtr.
413 FileFilter *filterPtr = flistPtr->filters;
427 if (flistPtr->filters == NULL) {
428 flistPtr->filters = flistPtr->filtersTail = filterPtr;
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkFileFilter.h68 * of a list of file filters.
76 FileFilter * filters; /* Head of the filter list */ member in struct:FileFilterList
78 int numFilters; /* number of filters in the list */
H A DtkFileFilter.c57 flistPtr->filters = NULL;
86 FileFilterList * flistPtr; /* Stores the list of file filters. */
179 FileFilterList * flistPtr; /* List of file filters to free */
183 filterPtr=flistPtr->filters;
191 flistPtr->filters = NULL;
362 * The list of filters are updated in flistPtr.
375 for (filterPtr=flistPtr->filters; filterPtr; filterPtr=filterPtr->next) {
387 if (flistPtr->filters == NULL) {
388 flistPtr->filters = flistPtr->filtersTail = filterPtr;
/macosx-10.10.1/apache-793/httpd/modules/lua/test/
H A Dtest_httpd.conf17 LuaMapHandler /filter/simple /Users/brianm/src/wombat/test/htdocs/filters.lua handle_simple
/macosx-10.10.1/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DSeccompBroker.cpp249 void SeccompBroker::launchProcess(SeccompFilters* filters, const SyscallPolicy& policy) argument
255 // The sigprocmask filters bellow are needed to trap sigprocmask()
257 filters->addRule("sigprocmask", SeccompFilters::Trap,
260 filters->addRule("sigprocmask", SeccompFilters::Trap,
263 filters->addRule("rt_sigprocmask", SeccompFilters::Trap,
266 filters->addRule("rt_sigprocmask", SeccompFilters::Trap,
270 // The sigaction filters bellow are needed to trap sigaction()
272 filters->addRule("sigaction", SeccompFilters::Trap,
274 filters->addRule("rt_sigaction", SeccompFilters::Trap,
296 // TODO: The broker should setup seccomp filters
[all...]
/macosx-10.10.1/xar-254/xar/lib/
H A Dlzmaxar.c246 LZMA_CONTEXT(context)->options.filters[0].id = LZMA_FILTER_POWERPC;
248 LZMA_CONTEXT(context)->options.filters[0].id = LZMA_FILTER_X86;
250 LZMA_CONTEXT(context)->options.filters[0].id = LZMA_FILTER_COPY;
252 LZMA_CONTEXT(context)->options.filters[0].options = NULL;
253 LZMA_CONTEXT(context)->options.filters[1].id = LZMA_FILTER_LZMA;
254 LZMA_CONTEXT(context)->options.filters[1].options = (lzma_options_lzma *)(lzma_preset_lzma + level - 1);
256 LZMA_CONTEXT(context)->options.filters[2].id = UINT64_MAX;
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dtracer.rb118 @filters = []
145 @filters.push p
188 for p in @filters
/macosx-10.10.1/IOFireWireIP-226.2/KernelHeaders/IONetworkingFamily/
H A DIOFWController.h69 /*! @enum Enumeration of wake-On-LAN filters.
70 @discussion An enumeration of all filters in the wake-on-LAN filter
78 and setting of the corresponding packet filters. */
137 @abstract Get the set of packet filters supported by the FireWire
149 @param filters Pointer to the mask of supported filters returned by
156 UInt32 * filters) const;
159 @abstract Enable one of the supported packet filters from the
164 enabled. Requests to disable the Unicast or Broadcast filters are handled
172 @param enabledFilters All filters currentl
[all...]

Completed in 225 milliseconds

1234567