Searched refs:FilterType (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dfilter_chain.h31 template <typename FilterType>
51 template <typename FilterType>
53 FilterType* filter = new FilterType(sink_);
/external/chromium_org/net/filter/
H A Dfilter.h130 enum FilterType { enum in class:net::Filter
156 static Filter* Factory(const std::vector<FilterType>& filter_types,
194 // FilterType.
195 static FilterType ConvertEncodingToType(const std::string& filter_type);
205 std::vector<FilterType>* encoding_types);
252 static Filter* PrependNewFilter(FilterType type_id,
259 static Filter* InitGZipFilter(FilterType type_id, int buffer_size);
260 static Filter* InitSdchFilter(FilterType type_id,
269 static Filter* FactoryForTests(const std::vector<FilterType>& filter_types,
H A Dfilter.cc47 Filter* Filter::Factory(const std::vector<FilterType>& filter_types,
68 Filter* Filter::FactoryForTests(const std::vector<FilterType>& filter_types,
138 Filter::FilterType Filter::ConvertEncodingToType(
140 FilterType type_id;
159 std::vector<FilterType>* encoding_types) {
348 Filter* Filter::InitGZipFilter(FilterType type_id, int buffer_size) {
355 Filter* Filter::InitSdchFilter(FilterType type_id,
364 Filter* Filter::PrependNewFilter(FilterType type_id,
H A Dgzip_filter.h37 bool InitDecoding(Filter::FilterType filter_type);
H A Dsdch_filter_unittest.cc172 std::vector<Filter::FilterType> filter_types;
192 std::vector<Filter::FilterType> filter_types;
216 std::vector<Filter::FilterType> filter_types;
253 std::vector<Filter::FilterType> filter_types;
293 std::vector<Filter::FilterType> filter_types;
329 std::vector<Filter::FilterType> filter_types;
370 std::vector<Filter::FilterType> filter_types;
457 std::vector<Filter::FilterType> filter_types;
494 std::vector<Filter::FilterType> filter_types;
524 std::vector<Filter::FilterType> filter_type
[all...]
H A Dsdch_filter.h35 bool InitDecoding(Filter::FilterType filter_type);
H A Dfilter_unittest.cc47 std::vector<Filter::FilterType> encoding_types;
92 std::vector<Filter::FilterType> encoding_types;
108 std::vector<Filter::FilterType> encoding_types;
145 std::vector<Filter::FilterType> encoding_types;
183 std::vector<Filter::FilterType> encoding_types;
226 std::vector<Filter::FilterType> encoding_types;
313 std::vector<Filter::FilterType> encoding_types;
H A Dgzip_filter_unittest.cc216 void InitFilter(Filter::FilterType type) {
217 std::vector<Filter::FilterType> filter_types;
224 void InitFilterWithBufferSize(Filter::FilterType type, int buffer_size) {
225 std::vector<Filter::FilterType> filter_types;
H A Dgzip_filter.cc28 bool GZipFilter::InitDecoding(Filter::FilterType filter_type) {
H A Dsdch_filter.cc156 bool SdchFilter::InitDecoding(Filter::FilterType filter_type) {
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DBiquadProcessor.h41 enum FilterType { enum in class:blink::FINAL
77 FilterType type() const { return m_type; }
78 void setType(FilterType);
81 FilterType m_type;
H A DBiquadFilterNode.cpp91 biquadProcessor()->setType(static_cast<BiquadProcessor::FilterType>(type));
H A DBiquadProcessor.cpp121 void BiquadProcessor::setType(FilterType type)
/external/chromium_org/cc/output/
H A Dfilter_operation.h29 enum FilterType { enum in class:cc::FilterOperation
52 FilterType type() const { return type_; }
172 void set_type(FilterType type) { type_ = type; }
229 FilterOperation(FilterType type, float amount);
231 FilterOperation(FilterType type,
236 FilterOperation(FilterType, SkScalar matrix[20]);
238 FilterOperation(FilterType type, float amount, int inset);
240 FilterOperation(FilterType type,
243 FilterOperation(FilterType type,
248 FilterType type
[all...]
H A Dfilter_operation.cc35 FilterOperation::FilterOperation(FilterType type, float amount)
48 FilterOperation::FilterOperation(FilterType type,
62 FilterOperation::FilterOperation(FilterType type, SkScalar matrix[20])
73 FilterOperation::FilterOperation(FilterType type, float amount, int inset)
85 FilterType type,
98 FilterOperation::FilterOperation(FilterType type,
128 static FilterOperation CreateNoOpFilter(FilterOperation::FilterType type) {
172 FilterOperation::FilterType type) {
/external/chromium_org/chrome/browser/download/
H A Ddownload_query.h50 enum FilterType { enum in class:DownloadQuery
99 // match all filters. Multiple instances of the same FilterType are allowed,
105 bool AddFilter(FilterType type, const base::Value& value);
H A Ddownload_query_unittest.cc67 DownloadQuery::FilterType name, ValueType value);
102 DownloadQuery::FilterType name, bool cpp_value) {
108 DownloadQuery::FilterType name, int cpp_value) {
114 DownloadQuery::FilterType name, const char* cpp_value) {
119 DownloadQuery::FilterType name, std::string cpp_value) {
124 DownloadQuery::FilterType name, const base::char16* cpp_value) {
129 DownloadQuery::FilterType name, std::vector<base::string16> cpp_value) {
139 DownloadQuery::FilterType name, std::vector<std::string> cpp_value) {
150 DownloadQuery::FilterType name, std::wstring cpp_value) {
163 static_cast<DownloadQuery::FilterType>(kint32ma
[all...]
H A Ddownload_query.cc268 bool DownloadQuery::AddFilter(DownloadQuery::FilterType type,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
H A DNetworkPanel.js99 WebInspector.NetworkLogView.FilterType = {
112 WebInspector.NetworkLogView._searchKeys = Object.values(WebInspector.NetworkLogView.FilterType);
918 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType.Domain, request.domain);
919 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType.Method, request.requestMethod);
920 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType.MimeType, request.mimeType);
921 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType.Scheme, "" + request.scheme);
922 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType.StatusCode, "" + request.statusCode);
926 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType.HasResponseHeader, responseHeaders[i].name);
930 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType.SetCookieDomain, cookie.domain());
931 this._suggestionBuilder.addItem(WebInspector.NetworkLogView.FilterType
[all...]
/external/chromium_org/content/common/
H A Dcc_messages.h133 IPC_ENUM_TRAITS_MAX_VALUE(cc::FilterOperation::FilterType,
H A Dcc_messages.cc57 cc::FilterOperation::FilterType type;
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2244 ArrayType *FilterType = cast<ArrayType>(FilterClause->getType()); local
2245 unsigned NumTypeInfos = FilterType->getNumElements();
2264 Constant::getNullValue(FilterType->getElementType());
2315 FilterType = ArrayType::get(FilterType->getElementType(),
2317 FilterClause = ConstantArray::get(FilterType, NewFilterElts);
/external/chromium_org/net/url_request/
H A Durl_request_http_job.cc1014 std::vector<Filter::FilterType> encoding_types;
/external/chromium_org/chrome/browser/extensions/api/downloads/
H A Ddownloads_api.cc347 typedef base::hash_map<std::string, DownloadQuery::FilterType> FilterTypeMap;

Completed in 298 milliseconds