Searched defs:FilterType (Results 1 - 6 of 6) sorted by relevance

/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;
/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/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,
/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);
/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...]
/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);

Completed in 302 milliseconds