Searched defs:filter (Results 26 - 50 of 1027) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/filter/
H A DPacketFilter.java21 package org.jivesoftware.smack.filter;
26 * Defines a way to filter packets for particular attributes. Packet filters are
27 * used when constructing packet listeners or collectors -- the filter defines
33 * {@link org.jivesoftware.smack.filter.AndFilter AndFilter} and
34 * {@link org.jivesoftware.smack.filter.OrFilter OrFilter} filters. It's also possible
36 * creates a trivial filter for packets with a specific ID.
39 * // Use an anonymous inner class to define a packet filter that returns
46 * // Create a new packet collector using the filter we created.
57 * Tests whether or not the specified packet should pass the filter.
60 * @return true if and only if <tt>packet</tt> passes the filter
[all...]
H A DAndFilter.java21 package org.jivesoftware.smack.filter;
30 * In other words, packets pass this filter if they pass <b>all</b> of the filters.
42 * Creates an empty AND filter. Filters should be added using the
50 * Creates an AND filter using the specified filters.
58 for(PacketFilter filter : filters) {
59 if(filter == null) {
62 this.filters.add(filter);
67 * Adds a filter to the filter list for the AND operation. A packet
68 * will pass the filter i
72 addFilter(PacketFilter filter) argument
[all...]
H A DOrFilter.java21 package org.jivesoftware.smack.filter;
27 * other words, packets pass this filter if they pass <b>any</b> of the filters.
34 * The current number of elements in the filter.
44 * Creates an empty OR filter. Filters should be added using the
53 * Creates an OR filter using the two specified filters.
55 * @param filter1 the first packet filter.
56 * @param filter2 the second packet filter.
69 * Adds a filter to the filter list for the OR operation. A packet
70 * will pass the filter i
74 addFilter(PacketFilter filter) argument
[all...]
/external/chromium_org/base/process/
H A Dprocess_iterator_win.cc9 ProcessIterator::ProcessIterator(const ProcessFilter* filter) argument
11 filter_(filter) {
/external/chromium_org/chrome/browser/extensions/api/log_private/
H A Dsyslog_parser_unittest.cc36 api::log_private::Filter filter; local
37 FilterHandler filter_handler(filter);
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dfilter_chain.h53 FilterType* filter = new FilterType(sink_); local
55 filters_.back()->set_sink(filter);
56 filters_.push_back(filter);
/external/chromium_org/ppapi/tests/
H A Dtest_core.cc18 void TestCore::RunTests(const std::string& filter) { argument
19 RUN_TEST(Time, filter);
20 RUN_TEST(TimeTicks, filter);
H A Dtest_crypto.cc24 void TestCrypto::RunTests(const std::string& filter) { argument
25 RUN_TEST(GetRandomBytes, filter);
H A Dtest_file_system.cc22 void TestFileSystem::RunTests(const std::string& filter) { argument
23 RUN_CALLBACK_TEST(TestFileSystem, Open, filter);
24 RUN_CALLBACK_TEST(TestFileSystem, MultipleOpens, filter);
25 RUN_CALLBACK_TEST(TestFileSystem, ResourceConversion, filter);
H A Dtest_host_resolver_private_disallowed.cc35 void TestHostResolverPrivateDisallowed::RunTests(const std::string& filter) { argument
36 RUN_CALLBACK_TEST(TestHostResolverPrivateDisallowed, Resolve, filter);
H A Dtest_mouse_cursor.cc23 void TestMouseCursor::RunTests(const std::string& filter) { argument
24 RUN_TEST(Type, filter);
25 RUN_TEST(Custom, filter);
26 RUN_TEST(Point, filter);
H A Dtest_pdf.cc20 void TestPDF::RunTests(const std::string& filter) { argument
21 RUN_TEST(GetLocalizedString, filter);
22 RUN_TEST(GetResourceImage, filter);
H A Dtest_platform_verification_private.cc21 void TestPlatformVerificationPrivate::RunTests(const std::string& filter) { argument
22 RUN_CALLBACK_TEST(TestPlatformVerificationPrivate, ChallengePlatform, filter);
H A Dtest_talk_private.cc44 void TestTalkPrivate::RunTests(const std::string& filter) { argument
45 RUN_CALLBACK_TEST(TestTalkPrivate, GetPermission, filter);
H A Dtest_tcp_socket_private_disallowed.cc33 void TestTCPSocketPrivateDisallowed::RunTests(const std::string& filter) { argument
34 RUN_TEST(Connect, filter);
H A Dtest_tcp_socket_private_trusted.cc37 void TestTCPSocketPrivateTrusted::RunTests(const std::string& filter) { argument
38 RUN_CALLBACK_TEST(TestTCPSocketPrivateTrusted, GetServerCertificate, filter);
H A Dtest_udp_socket_private_disallowed.cc27 void TestUDPSocketPrivateDisallowed::RunTests(const std::string& filter) { argument
28 RUN_TEST(Bind, filter);
H A Dtest_uma.cc19 void TestUMA::RunTests(const std::string& filter) { argument
20 RUN_TEST(Count, filter);
21 RUN_TEST(Time, filter);
22 RUN_TEST(Enum, filter);
H A Dtest_video_decoder.cc26 void TestVideoDecoder::RunTests(const std::string& filter) { argument
27 RUN_CALLBACK_TEST(TestVideoDecoder, Create, filter);
/external/chromium_org/skia/ext/
H A Dopacity_draw_filter.cc17 bool OpacityDrawFilter::filter(SkPaint* paint, Type type) { function in class:skia::OpacityDrawFilter
H A Dpaint_simplifier.cc34 bool PaintSimplifier::filter(SkPaint* paint, Type type) { function in class:skia::PaintSimplifier
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8NodeFilterCondition.h65 static PassRefPtrWillBeRawPtr<V8NodeFilterCondition> create(v8::Handle<v8::Value> filter, v8::Handle<v8::Object> owner, ScriptState* scriptState) argument
67 return adoptRefWillBeNoop(new V8NodeFilterCondition(filter, owner, scriptState));
75 // As the value |filter| is maintained by V8GC, the |owner| which references
77 // to hold a strong reference to |filter|.
78 V8NodeFilterCondition(v8::Handle<v8::Value> filter, v8::Handle<v8::Object> owner, ScriptState*);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeWalker.h43 static PassRefPtrWillBeRawPtr<TreeWalker> create(PassRefPtrWillBeRawPtr<Node> rootNode, unsigned whatToShow, PassRefPtrWillBeRawPtr<NodeFilter> filter) argument
45 return adoptRefWillBeNoop(new TreeWalker(rootNode, whatToShow, filter));
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceFilterPrimitive.h50 RenderObject* filter = parent(); local
51 if (!filter || !filter->isSVGResourceFilter())
53 toRenderSVGResourceFilter(filter)->primitiveAttributeChanged(this, attribute);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEMergeElement.cpp40 PassRefPtr<FilterEffect> SVGFEMergeElement::build(SVGFilterBuilder* filterBuilder, Filter* filter) argument
42 RefPtr<FilterEffect> effect = FEMerge::create(filter);

Completed in 2324 milliseconds

1234567891011>>