Searched refs:filter (Results 101 - 125 of 1092) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/Log4perl/Filter/
H A DLevelMatch.pm59 log4perl.filter.Match1 = Log::Log4perl::Filter::LevelMatch
60 log4perl.filter.Match1.LevelToMatch = ERROR
61 log4perl.filter.Match1.AcceptOnMatch = true
65 This Log4perl custom filter checks if the currently submitted message
67 The additional parameter C<AcceptOnMatch> defines if the filter
H A DStringMatch.pm66 log4perl.filter.Match1 = Log::Log4perl::Filter::StringMatch
67 log4perl.filter.Match1.StringToMatch = blah blah
68 log4perl.filter.Match1.AcceptOnMatch = true
72 This Log4perl custom filter checks if the currently submitted message
76 The additional parameter C<AcceptOnMatch> defines if the filter
H A DLevelRange.pm61 log4perl.filter.Match1 = Log::Log4perl::Filter::LevelRange
62 log4perl.filter.Match1.LevelMin = INFO
63 log4perl.filter.Match1.LevelMax = ERROR
64 log4perl.filter.Match1.AcceptOnMatch = true
68 This Log4perl custom filter checks if the current message
73 The additional parameter C<AcceptOnMatch> defines if the filter
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/nssov/
H A Dalias.c33 /* the basic search filter for searches */
98 struct berval filter = {sizeof(fbuf)};
99 filter.bv_val = fbuf;
105 nssov_filter_byname(cbp.mi,0,&cbp.name,&filter)
110 struct berval filter;
115 (filter=cbp.mi->mi_filter,0)
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/lib/HTTP/Proxy/
H A DBodyFilter.pm18 sub filter { subroutine
19 croak "HTTP::Proxy::HeaderFilter cannot be used as a filter";
22 sub will_modify { 1 } # by default, we expect the filter to modify data
39 sub filter {
55 C<filter()> B<must> be defined in the derived class.
59 =item filter()
61 The signature of the filter() method is the following:
63 sub filter {
68 where $self is the filter object, $dataref is a reference to the chunk
78 can be stored for the next time the filter wil
[all...]
H A DHeaderFilter.pm13 sub filter { subroutine
14 croak "HTTP::Proxy::HeaderFilter cannot be used as a filter";
37 # this filter must be pushed on the request stack
38 sub filter {
55 C<filter()> B<must> be defined in the derived class.
59 =item filter()
61 The signature of the filter() method is the following:
63 sub filter { my ( $self, $headers, $message) = @_; ... }
65 where $self is the filter object, $headers is a HTTP::Headers object,
69 the client (if the filter i
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/lib/HTTP/Proxy/
H A DBodyFilter.pm18 sub filter { subroutine
19 croak "HTTP::Proxy::HeaderFilter cannot be used as a filter";
22 sub will_modify { 1 } # by default, we expect the filter to modify data
39 sub filter {
55 C<filter()> B<must> be defined in the derived class.
59 =item filter()
61 The signature of the filter() method is the following:
63 sub filter {
68 where $self is the filter object, $dataref is a reference to the chunk
78 can be stored for the next time the filter wil
[all...]
H A DHeaderFilter.pm13 sub filter { subroutine
14 croak "HTTP::Proxy::HeaderFilter cannot be used as a filter";
37 # this filter must be pushed on the request stack
38 sub filter {
55 C<filter()> B<must> be defined in the derived class.
59 =item filter()
61 The signature of the filter() method is the following:
63 sub filter { my ( $self, $headers, $message) = @_; ... }
65 where $self is the filter object, $headers is a HTTP::Headers object,
69 the client (if the filter i
[all...]
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dcupsfilter.c41 static mime_filter_t GZIPFilter = /* gziptoany filter */
65 const char *filter);
74 static int exec_filter(const char *filter, char **argv,
112 char *infile, /* File to filter */
214 case 'e' : /* Use every filter from the PPD file */
425 * Figure out how to filter the file...
442 _("%s: No filter to convert from %s/%s to %s/%s."),
455 mime_filter_t *filter, /* Current filter */ local
456 *prefilter; /* Current pre-filter */
505 add_printer_filter( const char *command, mime_t *mime, mime_type_t *filtertype, const char *filter) argument
782 exec_filter(const char *filter, char **argv, char **envp, int infd, int outfd) argument
921 mime_filter_t *filter, /* Current filter */ local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dtridpars.cpp57 filter = f;
64 filter = f;
80 if (filter.length() != 0) {
82 UnicodeSet *set = new UnicodeSet(filter, ec);
113 // A and B are filter IDs.
159 single->filter = specsA->filter;
175 single->filter = specsB->filter;
194 single->filter
258 UnicodeSet* filter = NULL; local
361 UnicodeSet* filter; local
705 UnicodeString filter; local
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/lib/HTTP/Proxy/BodyFilter/
H A Dlines.pm24 sub filter { subroutine
62 HTTP::Proxy::BodyFilter::lines - A filter that outputs only complete lines
67 use MyFilter; # this filter only works on complete lines
69 my $filter = MyFilter->new();
75 response => $filter
84 The HTTP::Proxy::BodyFilter::lines filter makes sure that the next filter
85 in the filter chain will only receive complete lines. The "chunks"
89 You can change the idea the filter has of what is a line by passing to
93 my $filter
[all...]
H A Dhtmlparser.pm20 sub filter { subroutine
54 filter based on the HTML::Parser object of your choice.
56 This filter takes a HTML::Parser object as an argument to its constructor.
57 The filter is either read-only or read-write. A read-only filter will
59 filter, you'll have to rewrite the response-body completely.
61 With a read-write filter, you B<must> recreate the whole body data. This
67 Note that a simple filter that modify the HTML text (not the tags) can
72 A read-write filter is declared by passing C<rw =E<gt> 1> to the constructor:
76 To be able to modify the body of a message, a filter create
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/lib/HTTP/Proxy/BodyFilter/
H A Dlines.pm24 sub filter { subroutine
62 HTTP::Proxy::BodyFilter::lines - A filter that outputs only complete lines
67 use MyFilter; # this filter only works on complete lines
69 my $filter = MyFilter->new();
75 response => $filter
84 The HTTP::Proxy::BodyFilter::lines filter makes sure that the next filter
85 in the filter chain will only receive complete lines. The "chunks"
89 You can change the idea the filter has of what is a line by passing to
93 my $filter
[all...]
H A Dhtmlparser.pm20 sub filter { subroutine
54 filter based on the HTML::Parser object of your choice.
56 This filter takes a HTML::Parser object as an argument to its constructor.
57 The filter is either read-only or read-write. A read-only filter will
59 filter, you'll have to rewrite the response-body completely.
61 With a read-write filter, you B<must> recreate the whole body data. This
67 Note that a simple filter that modify the HTML text (not the tags) can
72 A read-write filter is declared by passing C<rw =E<gt> 1> to the constructor:
76 To be able to modify the body of a message, a filter create
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFEMorphology.cpp42 FEMorphology::FEMorphology(Filter* filter, MorphologyOperatorType type, float radiusX, float radiusY) argument
43 : FilterEffect(filter)
50 PassRefPtr<FEMorphology> FEMorphology::create(Filter* filter, MorphologyOperatorType type, float radiusX, float radiusY) argument
52 return adoptRef(new FEMorphology(filter, type, radiusX, radiusY));
89 Filter* filter = this->filter(); local
90 paintRect.inflateX(filter->applyHorizontalScale(m_radiusX));
91 paintRect.inflateY(filter->applyVerticalScale(m_radiusY));
166 param->filter->platformApplyGeneric(param->paintingData, param->startY, param->endY);
183 param.filter
213 Filter* filter = this->filter(); local
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/filters/
H A Dmod_ext_filter.c18 * mod_ext_filter allows Unix-style filters to filter http content.
69 ef_filter_t *filter; member in struct:ef_ctx_t
169 static const char *parse_cmd(apr_pool_t *p, const char **args, ef_filter_t *filter) argument
196 rv = apr_tokenize_to_argv(parms, &(filter->args), p);
205 filter->args = (char **)apr_palloc(p, 2 * sizeof(char *));
206 filter->args[0] = ap_getword_white(p, args);
207 filter->args[1] = NULL; /* end of args */
209 if (!filter->args[0]) {
212 filter->command = filter
224 ef_filter_t *filter; local
538 get_cfg_string(ef_dir_t *dc, ef_filter_t *filter, apr_pool_t *p) argument
[all...]
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Diopending65 opt_def=1; filter=0; device=.; filename=.; mount=.
104 filter=1
128 inline int FILTER = '$filter';
162 /* check each filter, */
/macosx-10.9.5/dtrace-118.1/DTTk/Disk/
H A Diopending65 opt_def=1; filter=0; device=.; filename=.; mount=.
104 filter=1
128 inline int FILTER = '$filter';
162 /* check each filter, */
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/tests/progs/
H A Dslapd-search.c44 char *sbase, int scope, char *filter, LDAP **ldp,
50 char *sbase, int scope, char *filter, char *attr,
103 char *filter = NULL; local
173 filter = strdup( optarg );
228 if (( sbase == NULL ) || ( filter == NULL ) || ( port == -1 && uri == NULL ))
231 if ( *filter == '\0' ) {
233 fprintf( stderr, "%s: invalid EMPTY search filter.\n",
248 sbase, scope, filter, attr,
254 sbase, scope, filter, NULL,
266 char *sbase, int scope, char *filter, cha
265 do_random( char *uri, char *manager, struct berval *passwd, char *sbase, int scope, char *filter, char *attr, char **srchattrs, int noattrs, int nobind, int innerloop, int maxretries, int delay, int force, int chaserefs ) argument
385 do_search( char *uri, char *manager, struct berval *passwd, char *sbase, int scope, char *filter, LDAP **ldp, char **attrs, int noattrs, int nobind, int innerloop, int maxretries, int delay, int force, int chaserefs ) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Class-Accessor-Grouped/t/
H A Dmanifest.t20 filter => [qr/\.(svn|git)/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.DS_Store/],
/macosx-10.9.5/CPANInternal-140/Class-Data-Accessor-0.04004/t/
H A Dmanifest.t20 filter => [qr/\.git/, qr/\.svn/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.tmproj/],
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/contrib/
H A Drecursive-ldap-delete.pl23 filter => "(objectclass=*)" );
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/t/
H A D50populate.t20 $mesg = $ldap->search(base => $BASEDN, filter => 'objectclass=*');
H A D52modify.t24 $mesg = $ldap->search(base => $BASEDN, filter => 'objectclass=*');
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DLDAPSearchRequest.cpp32 const string& filter, const StringList& attrs, bool attrsOnly,
42 << " filter:" << filter << endl);
47 if(filter == ""){
50 m_filter=filter;
94 string filter; local
105 filter=usedUrl->getFilter();
107 filter=m_filter;
120 return new LDAPSearchRequest(usedUrl->getDN(), scope, filter,
31 LDAPSearchRequest(const string& base, int scope, const string& filter, const StringList& attrs, bool attrsOnly, LDAPAsynConnection *connect, const LDAPConstraints* cons, bool isReferral, const LDAPRequest* parent) argument

Completed in 216 milliseconds

1234567891011>>