Home
last modified time | relevance | path

Searched refs:through (Results 1 – 25 of 1336) sorted by relevance

12345678910>>...54

/external/guice/extensions/servlet/src/com/google/inject/servlet/
DFiltersModuleBuilder.java61 public void through(Class<? extends Filter> filterKey) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
62 through(Key.get(filterKey)); in through()
65 public void through(Key<? extends Filter> filterKey) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
66 through(filterKey, new HashMap<String, String>()); in through()
69 public void through(Filter filter) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
70 through(filter, new HashMap<String, String>()); in through()
73 public void through(Class<? extends Filter> filterKey, in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
77 through(Key.get(filterKey), initParams); in through()
80 public void through(Key<? extends Filter> filterKey, in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
82 through(filterKey, initParams, null); in through()
[all …]
DServletModule.java300 void through(Class<? extends Filter> filterKey); in through() method
301 void through(Key<? extends Filter> filterKey); in through() method
303 void through(Filter filter); in through() method
304 void through(Class<? extends Filter> filterKey, Map<String, String> initParams); in through() method
305 void through(Key<? extends Filter> filterKey, Map<String, String> initParams); in through() method
307 void through(Filter filter, Map<String, String> initParams); in through() method
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DEdslTest.java61 filter("/*").through(DummyFilterImpl.class); in testConfigureServlets()
62 filter("*.html").through(DummyFilterImpl.class); in testConfigureServlets()
63 filter("/*").through(Key.get(DummyFilterImpl.class)); in testConfigureServlets()
64 filter("/*").through(new DummyFilterImpl()); in testConfigureServlets()
66 filter("*.html").through(DummyFilterImpl.class, in testConfigureServlets()
69 filterRegex("/person/[0-9]*").through(DummyFilterImpl.class); in testConfigureServlets()
70 filterRegex("/person/[0-9]*").through(DummyFilterImpl.class, in testConfigureServlets()
73 filterRegex("/person/[0-9]*").through(Key.get(DummyFilterImpl.class)); in testConfigureServlets()
74 filterRegex("/person/[0-9]*").through(Key.get(DummyFilterImpl.class), in testConfigureServlets()
77 filterRegex("/person/[0-9]*").through(new DummyFilterImpl()); in testConfigureServlets()
[all …]
DFilterDispatchIntegrationTest.java79 filter("/*").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
80 filter("*.html").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
81 filter("/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
84 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
85 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
138 filter("/public/*").through(TestFilter.class); in testDispatchThatNoFiltersFire()
139 filter("*.html").through(TestFilter.class); in testDispatchThatNoFiltersFire()
140 filter("*.xml").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
143 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
144 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
[all …]
DInjectedFilterPipelineTest.java46 filter("/*").through(TestFilter.class); in setUp()
47 filter("*.html").through(TestFilter.class); in setUp()
48 filter("/*").through(Key.get(TestFilter.class)); in setUp()
49 filter("*.jsp").through(Key.get(TestFilter.class)); in setUp()
52 filter("/index/*").through(Key.get(NeverFilter.class)); in setUp()
53 filter("/public/login/*").through(Key.get(NeverFilter.class)); in setUp()
63 filter("*.html").through(NeverFilter.class); in setUp()
64 filter("/non-jsp/*").through(Key.get(NeverFilter.class)); in setUp()
67 filter("/index/*").through(Key.get(TestFilter.class)); in setUp()
68 filter("/public/login/*").through(Key.get(TestFilter.class)); in setUp()
DVarargsFilterDispatchIntegrationTest.java53 filter("/*", "*.html", "/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
56 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
57 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
92 filter("/public/*", "*.html", "*.xml").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
95 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
96 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
133 filterRegex("/[A-Za-z]*", "/index").through(TestFilter.class); in testDispatchFilterPipelineWithRegexMatching()
136 filterRegex("\\w").through(Key.get(TestFilter.class)); in testDispatchFilterPipelineWithRegexMatching()
DExtensionSpiTest.java147 filter("/class", "/class/2").through(DummyFilterImpl.class); in configureServlets()
148 filter("/key", "/key/2").through( in configureServlets()
150 filter("/instance", "/instance/2").through(dummyFilter1); in configureServlets()
151 filter("/class/keyvalues", "/class/keyvalues/2").through( in configureServlets()
153 filter("/key/keyvalues", "/key/keyvalues/2").through( in configureServlets()
155 filter("/instance/keyvalues", "/instance/keyvalues/2").through( in configureServlets()
158 filterRegex("/class[0-9]", "/class[0-9]/2").through(DummyFilterImpl.class); in configureServlets()
159 filterRegex("/key[0-9]", "/key[0-9]/2").through( in configureServlets()
161 filterRegex("/instance[0-9]", "/instance[0-9]/2").through(dummyFilter3); in configureServlets()
162 filterRegex("/class[0-9]/keyvalues", "/class[0-9]/keyvalues/2").through( in configureServlets()
[all …]
DFilterPipelineTest.java44 filter("/*").through(TestFilter.class); in setUp()
45 filter("*.html").through(TestFilter.class); in setUp()
46 filter("/*").through(Key.get(TestFilter.class)); in setUp()
47 filter("*.jsp").through(Key.get(TestFilter.class)); in setUp()
50 filter("/index/*").through(Key.get(NeverFilter.class)); in setUp()
51 filter("/public/login/*").through(Key.get(NeverFilter.class)); in setUp()
DMultiModuleDispatchIntegrationTest.java52 filter("/*").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
55 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
62 filter("*.html").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
63 filter("/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
66 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
DInvalidScopeBindingTest.java54 filter("/*").through(MyNonSingletonFilter.class); in testFilterInNonSingletonScopeThrowsServletException()
75 filter("/*").through(MySingletonFilter.class); in testHappyCaseFilter()
79 filter("/*").through(DummyFilterImpl.class); in testHappyCaseFilter()
/external/tcpdump/tests/
Dsyslog-v.out4 Msg: Sep 12 19:16:12 through logger: test message 21\0x00
8 Msg: Sep 12 19:16:18 through logger: test message 22\0x00
12 Msg: 2013-09-12T19:16:34.457849+04:00 localhost through rsyslog: test message 23
16 Msg: 2013-09-12T19:16:43.513746+04:00 localhost through rsyslog: test message 24
/external/clang/test/Modules/
Dmacro-undef-through-pch.m3 // RUN: -I%S/Inputs/macro-undef-through-pch -emit-pch \
4 // RUN: %S/Inputs/macro-undef-through-pch/foo.h -o %t.pch
6 // RUN: -I%S/Inputs/macro-undef-through-pch -emit-pch \
/external/clang/test/SemaCXX/
Dswitch-implicit-fallthrough.cpp244 expected-warning{{unannotated fall-through between switch labels}} \ in fallthrough_in_local_class()
245 expected-note{{insert 'break;' to avoid fall-through}} in fallthrough_in_local_class()
264 expected-warning{{unannotated fall-through between switch labels}} \ in fallthrough_in_lambda()
265 expected-note{{insert 'break;' to avoid fall-through}} in fallthrough_in_lambda()
Dswitch-implicit-fallthrough-blocks.cpp13 expected-warning{{unannotated fall-through between switch labels}} \ in fallthrough_in_blocks()
14 expected-note{{insert 'break;' to avoid fall-through}} in fallthrough_in_blocks()
/external/autotest/server/site_tests/generic_RebootTest/
Dcontrol17 This server side test checks if a host, specified through the command line,
28 android device either through usb or tcp. If no device_hostname is specified
30 whereas if the ip of the android device is specified through device_hostname
45 'hostname through test_that --args="device_hostname=<android ip>".'
/external/opencv3/3rdparty/libpng/
DLICENSE13 libpng versions 1.2.6, August 15, 2004, through 1.5.12, July 11, 2012, are
20 libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
38 libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
47 libpng versions 0.89, June 1996, through 0.96, May 1997, are
59 libpng versions 0.5, May 1995, through 0.88, January 1996, are
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
167 … * Assert that the specified reply code and message containing text was sent through the session.
186 * Assert that the specified reply codes were sent through the session.
197 * Assert that the specified data was sent through the session.
207 * Assert that the specified data was sent through the session, terminated by an end-of-line.
215 * Assert that the data sent through the session terminated with an end-of-line.
223 * assert that the standard SEND DATA replies were sent through the session.
234 * assert that the standard SEND DATA replies were sent through the session.
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
167 … * Assert that the specified reply code and message containing text was sent through the session.
186 * Assert that the specified reply codes were sent through the session.
197 * Assert that the specified data was sent through the session.
207 * Assert that the specified data was sent through the session, terminated by an end-of-line.
215 * Assert that the data sent through the session terminated with an end-of-line.
223 * assert that the standard SEND DATA replies were sent through the session.
234 * assert that the standard SEND DATA replies were sent through the session.
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
167 … * Assert that the specified reply code and message containing text was sent through the session.
186 * Assert that the specified reply codes were sent through the session.
197 * Assert that the specified data was sent through the session.
207 * Assert that the specified data was sent through the session, terminated by an end-of-line.
215 * Assert that the data sent through the session terminated with an end-of-line.
223 * assert that the standard SEND DATA replies were sent through the session.
234 * assert that the standard SEND DATA replies were sent through the session.
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
167 … * Assert that the specified reply code and message containing text was sent through the session.
186 * Assert that the specified reply codes were sent through the session.
197 * Assert that the specified data was sent through the session.
207 * Assert that the specified data was sent through the session, terminated by an end-of-line.
215 * Assert that the data sent through the session terminated with an end-of-line.
223 * assert that the standard SEND DATA replies were sent through the session.
234 * assert that the standard SEND DATA replies were sent through the session.
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
167 … * Assert that the specified reply code and message containing text was sent through the session.
186 * Assert that the specified reply codes were sent through the session.
197 * Assert that the specified data was sent through the session.
207 * Assert that the specified data was sent through the session, terminated by an end-of-line.
215 * Assert that the data sent through the session terminated with an end-of-line.
223 * assert that the standard SEND DATA replies were sent through the session.
234 * assert that the standard SEND DATA replies were sent through the session.
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
167 … * Assert that the specified reply code and message containing text was sent through the session.
186 * Assert that the specified reply codes were sent through the session.
197 * Assert that the specified data was sent through the session.
207 * Assert that the specified data was sent through the session, terminated by an end-of-line.
215 * Assert that the data sent through the session terminated with an end-of-line.
223 * assert that the standard SEND DATA replies were sent through the session.
234 * assert that the standard SEND DATA replies were sent through the session.
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
166 … * Assert that the specified reply code and message containing text was sent through the session.
185 * Assert that the specified reply codes were sent through the session.
196 * Assert that the specified data was sent through the session.
206 * Assert that the specified data was sent through the session, terminated by an end-of-line.
214 * Assert that the data sent through the session terminated with an end-of-line.
222 * assert that the standard SEND DATA replies were sent through the session.
233 * assert that the standard SEND DATA replies were sent through the session.
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy157 … * Assert that the specified reply code and message containing text was sent through the session.
166 … * Assert that the specified reply code and message containing text was sent through the session.
185 * Assert that the specified reply codes were sent through the session.
196 * Assert that the specified data was sent through the session.
206 * Assert that the specified data was sent through the session, terminated by an end-of-line.
214 * Assert that the data sent through the session terminated with an end-of-line.
222 * assert that the standard SEND DATA replies were sent through the session.
233 * assert that the standard SEND DATA replies were sent through the session.
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
Dtest-streams.rb173 @stream.through( 2 ).should == 'oh'
174 @stream.through( -2 ).should == ''
176 @stream.through( 0 ).should == ''
177 @stream.through( 1 ).should == 'y'
178 @stream.through( -2 ).should == 'he'
179 @stream.through( 5 ).should == "y!\n"

12345678910>>...54