Home
last modified time | relevance | path

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

12345678910>>...72

/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/ltp/testcases/open_posix_testsuite/stress/timers/
Dplan.txt41 - Set memory to 95% and run through key clocks functions.
42 - Set memory to 95% and run through key timers functions.
46 - Set CPU to 95% and run through key clocks functions.
47 - Set CPU to 95% and run through key timers functions.
51 - Set up >10,000 timers and run through key clocks functions.
52 - Set up >10,000 timers and run through key timers functions.
/external/python/cpython2/Doc/c-api/
Ddatetime.rst148 Return the month, as an int from 1 through 12.
155 Return the day, as an int from 1 through 31.
166 Return the hour, as an int from 0 through 23.
173 Return the minute, as an int from 0 through 59.
180 Return the second, as an int from 0 through 59.
187 Return the microsecond, as an int from 0 through 999999.
198 Return the hour, as an int from 0 through 23.
205 Return the minute, as an int from 0 through 59.
212 Return the second, as an int from 0 through 59.
219 Return the microsecond, as an int from 0 through 999999.
/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/curl/docs/cmdline-opts/
Dproxytunnel.d2 Help: Operate through a HTTP proxy tunnel (using CONNECT)
6 to attempt to tunnel through the proxy instead of merely using it to do
9 number curl wants to tunnel through to.
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Dicmp-with-zero.ll21 ; lines actually runs the output through the assembler.
42 ; lines actually runs the output through the assembler.
63 ; lines actually runs the output through the assembler.
84 ; lines actually runs the output through the assembler.
105 ; lines actually runs the output through the assembler.
126 ; lines actually runs the output through the assembler.
148 ; lines actually runs the output through the assembler.
170 ; lines actually runs the output through the assembler.
192 ; lines actually runs the output through the assembler.
214 ; lines actually runs the output through the assembler.
[all …]
/external/clang/test/SemaCXX/
Dswitch-implicit-fallthrough.cpp241 expected-warning{{unannotated fall-through between switch labels}} \ in fallthrough_in_local_class()
242 expected-note{{insert 'break;' to avoid fall-through}} in fallthrough_in_local_class()
261 expected-warning{{unannotated fall-through between switch labels}} \ in fallthrough_in_lambda()
262 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/ltp/runtest/
Dquickhit294 # 1. Get object file status through symbolic link file
295 # 2. Receive ENOENT error when accessing non-existent object file through symbolic link file
307 # 1. Receive EEXIST error when creating a directory through a symbolic link file
311 # 1. Receive ENOTDIR error when removing an existing directory through a symbolic link file
315 # 1. Change current working directory through a symbolic link file
316 # 2. Receive ENOENT error when accessing non-existent directory through symbolic link file
321 # 1. Link an object file to a new file through symbolic link file
322 # 2. Receive ENOENT error when accessing non-existent object file through symbolic link file
331 # 1. Change file permissions of object file through a symbolic link file
332 # 2. Receive ENOENT error when accessing non-existent directory through symbolic link file
[all …]
/external/autotest/server/site_tests/generic_RebootTest/
Dcontrol18 This server side test checks if a host, specified through the command line,
29 android device either through usb or tcp. If no device_hostname is specified
31 whereas if the ip of the android device is specified through device_hostname
46 'hostname through test_that --args="device_hostname=<android ip>".'
/external/llvm/test/CodeGen/AArch64/
Daarch64-dynamic-stack-layout.ll107 ; Check correct access to arguments passed on the stack, through stack pointer
110 ; Check correct access to local variable on the stack, through stack pointer
131 ; Check correct access to arguments passed on the stack, through frame pointer
134 ; Check correct access to local variable on the stack, through stack pointer
158 ; Check correct access to arguments passed on the stack, through stack pointer
161 ; Check correct access to local variable on the stack, through stack pointer
195 ; Check correct access to arguments passed on the stack, through frame pointer
198 ; Check correct access to local variable on the stack, through re-aligned stack pointer
224 ; Check correct access to arguments passed on the stack, through frame pointer
227 ; Check correct access to local variable on the stack, through re-aligned stack pointer
[all …]
/external/iptables/extensions/
Dlibxt_physdev.man15 through a bridge device, this packet won't match this option, unless '!' is used.
27 Matches if the packet has entered through a bridge interface.
30 Matches if the packet will leave through a bridge interface.
/external/ltp/testcases/kernel/controllers/memcg/
DREADME25 through the named pipe /tmp/status_pipe and frees it on receiving 'm' again.
34 The program gets page size through getpagesize().
59 The one you have gone through.
/external/syslinux/com32/lib/libpng/
DLICENSE13 libpng versions 1.2.6, August 15, 2004, through 1.2.44, June 26, 2010, 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.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.

12345678910>>...72