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

12345678

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/win/
H A DPlatformCAFiltersWin.cpp35 void PlatformCAFilters::setFiltersOnLayer(PlatformCALayer* platformCALayer, const FilterOperations& filters) argument
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/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.9.5/CPANInternal-140/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.9.5/tcl-102/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.9.5/CPANInternal-140/Template-Toolkit/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.9.5/CPANInternal-140/Template-Toolkit-2.24/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.9.5/IOFireWireIP-226.4/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.9.5/cups-372.4/cups/scheduler/
H A Dtestmime.c19 * add_ppd_filters() - Add all filters from a PPD.
59 int cost; /* Cost of filters */
65 cups_array_t *filters; /* Filters for the file */ local
138 filters = mimeFilter2(mime, src, srcinfo.st_size, dst, &cost);
140 if (!filters)
142 printf("No filters to convert from %s/%s to %s.\n", src->super,
151 for (filter = (mime_filter_t *)cupsArrayFirst(filters);
153 filter = (mime_filter_t *)cupsArrayNext(filters))
169 cupsArrayDelete(filters);
192 puts("MIME database filters
469 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,
109 int cost; /* Cost of filters */
118 cups_array_t *filters; /* Filters for the file */ local
124 int all_filters, /* Use all filters */
434 filters = cupsArrayNew(NULL, NULL);
435 cupsArrayAdd(filters, &GZIPFilter);
439 else if ((filters = mimeFilter(mime, src, dst, &cost)) == NULL)
447 cupsArrayInsert(filters, &GZIPFilter);
452 * Add pre-filters...
458 /* New filters arra
889 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.c29 * mimeNumFilters() - Get the number of filters in a MIME database.
93 * Loop through filters and free them...
96 for (filter = (mime_filter_t *)cupsArrayFirst(mime->filters);
98 filter = (mime_filter_t *)cupsArrayNext(mime->filters))
111 * Free the types and filters arrays, and then the MIME database structure.
115 cupsArrayDelete(mime->filters);
142 if (!cupsArrayFind(mime->filters, filter))
146 cupsArrayRemove(mime->filters, filter);
229 mime_filter_t *first = (mime_filter_t *)cupsArrayFirst(mime->filters);
290 * Use @link mimeLoadTypes@ to load all types before you load the filters
[all...]
/macosx-10.9.5/IONetworkingFamily-100/
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...]
/macosx-10.9.5/CPANInternal-140/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.9.5/tcl-102/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 */
/macosx-10.9.5/tcl-102/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 */
/macosx-10.9.5/apache-786.1/httpd/modules/
H A DNWGNUmakefile43 filters \
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DDynamicsCompressor.cpp110 ZeroPole& preFilter = m_preFilterPacks[i]->filters[stageIndex];
116 ZeroPole& postFilter = m_postFilterPacks[i]->filters[stageIndex];
184 ZeroPole* preFilters = m_preFilterPacks[i]->filters;
240 ZeroPole* postFilters = m_postFilterPacks[i]->filters;
257 m_preFilterPacks[channel]->filters[stageIndex].reset();
258 m_postFilterPacks[channel]->filters[stageIndex].reset();
/macosx-10.9.5/WebKit2-7537.78.2/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.9.5/xar-202/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.9.5/postfix-252/postfix/src/postconf/
H A Dpostconf_master.c12 /* void show_master(mode, filters)
14 /* char **filters;
28 /* .IP filters
275 void show_master(int mode, char **filters) argument
284 if (filters[0])
285 service_filter = match_service_init_argv(filters);
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dtracer.rb118 @filters = []
145 @filters.push p
188 for p in @filters
/macosx-10.9.5/apache-786.1/httpd/modules/filters/
H A Dmod_charset_lite.mak255 cd "..\..\modules\filters"
260 cd "..\..\modules\filters"
267 cd "..\..\modules\filters"
272 cd "..\..\modules\filters"
281 cd "..\..\modules\filters"
286 cd "..\..\modules\filters"
293 cd "..\..\modules\filters"
298 cd "..\..\modules\filters"
307 cd ".\modules\filters"
312 cd ".\modules\filters"
[all...]
H A Dmod_deflate.mak255 cd "..\..\modules\filters"
260 cd "..\..\modules\filters"
267 cd "..\..\modules\filters"
272 cd "..\..\modules\filters"
281 cd "..\..\modules\filters"
286 cd "..\..\modules\filters"
293 cd "..\..\modules\filters"
298 cd "..\..\modules\filters"
307 cd ".\modules\filters"
312 cd ".\modules\filters"
[all...]

Completed in 202 milliseconds

12345678