Home
last modified time | relevance | path

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

12345678910>>...116

/external/guice/extensions/servlet/src/com/google/inject/servlet/
DFiltersModuleBuilder.java76 public void through(Class<? extends Filter> filterKey) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
77 through(Key.get(filterKey)); in through()
81 public void through(Key<? extends Filter> filterKey) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
82 through(filterKey, new HashMap<String, String>()); in through()
86 public void through(Filter filter) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
87 through(filter, new HashMap<String, String>()); in through()
91 public void through(Class<? extends Filter> filterKey, Map<String, String> initParams) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
94 through(Key.get(filterKey), initParams); in through()
98 public void through(Key<? extends Filter> filterKey, Map<String, String> initParams) { in through() method in FiltersModuleBuilder.FilterKeyBindingBuilderImpl
99 through(filterKey, initParams, null); in through()
[all …]
DServletModule.java338 void through(Class<? extends Filter> filterKey); in through() method
340 void through(Key<? extends Filter> filterKey); in through() method
342 void through(Filter filter); in through() method
344 void through(Class<? extends Filter> filterKey, Map<String, String> initParams); in through() method
346 void through(Key<? extends Filter> filterKey, Map<String, String> initParams); in through() method
348 void through(Filter filter, Map<String, String> initParams); in through() method
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DEdslTest.java63 filter("/*").through(DummyFilterImpl.class); in testConfigureServlets()
64 filter("*.html").through(DummyFilterImpl.class); in testConfigureServlets()
65 filter("/*").through(Key.get(DummyFilterImpl.class)); in testConfigureServlets()
66 filter("/*").through(new DummyFilterImpl()); in testConfigureServlets()
68 filter("*.html").through(DummyFilterImpl.class, new HashMap<String, String>()); in testConfigureServlets()
70 filterRegex("/person/[0-9]*").through(DummyFilterImpl.class); in testConfigureServlets()
72 .through(DummyFilterImpl.class, new HashMap<String, String>()); in testConfigureServlets()
74 filterRegex("/person/[0-9]*").through(Key.get(DummyFilterImpl.class)); in testConfigureServlets()
76 .through(Key.get(DummyFilterImpl.class), new HashMap<String, String>()); in testConfigureServlets()
78 filterRegex("/person/[0-9]*").through(new DummyFilterImpl()); in testConfigureServlets()
[all …]
DFilterDispatchIntegrationTest.java74 filter("/*").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
75 filter("*.html").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
76 filter("/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
79 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
80 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
135 filter("/public/*").through(TestFilter.class); in testDispatchThatNoFiltersFire()
136 filter("*.html").through(TestFilter.class); in testDispatchThatNoFiltersFire()
137 filter("*.xml").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
140 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
141 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
[all …]
DInjectedFilterPipelineTest.java45 filter("/*").through(TestFilter.class); in setUp()
46 filter("*.html").through(TestFilter.class); in setUp()
47 filter("/*").through(Key.get(TestFilter.class)); in setUp()
48 filter("*.jsp").through(Key.get(TestFilter.class)); in setUp()
51 filter("/index/*").through(Key.get(NeverFilter.class)); in setUp()
52 filter("/public/login/*").through(Key.get(NeverFilter.class)); in setUp()
64 filter("*.html").through(NeverFilter.class); in setUp()
65 filter("/non-jsp/*").through(Key.get(NeverFilter.class)); in setUp()
68 filter("/index/*").through(Key.get(TestFilter.class)); in setUp()
69 filter("/public/login/*").through(Key.get(TestFilter.class)); in setUp()
DVarargsFilterDispatchIntegrationTest.java49 filter("/*", "*.html", "/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
52 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
53 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
91 filter("/public/*", "*.html", "*.xml").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
94 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
95 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchThatNoFiltersFire()
135 filterRegex("/[A-Za-z]*", "/index").through(TestFilter.class); in testDispatchFilterPipelineWithRegexMatching()
138 filterRegex("\\w").through(Key.get(TestFilter.class)); in testDispatchFilterPipelineWithRegexMatching()
DExtensionSpiTest.java249 filter("/class", "/class/2").through(DummyFilterImpl.class); in configureServlets()
250 filter("/key", "/key/2").through(Key.get(DummyFilterImpl.class, Names.named("foo"))); in configureServlets()
251 filter("/instance", "/instance/2").through(dummyFilter1); in configureServlets()
253 .through(DummyFilterImpl.class, ImmutableMap.of("key", "value")); in configureServlets()
255 .through( in configureServlets()
258 .through(dummyFilter2, ImmutableMap.of("key", "value")); in configureServlets()
260 filterRegex("/class[0-9]", "/class[0-9]/2").through(DummyFilterImpl.class); in configureServlets()
262 .through(Key.get(DummyFilterImpl.class, Names.named("foo"))); in configureServlets()
263 filterRegex("/instance[0-9]", "/instance[0-9]/2").through(dummyFilter3); in configureServlets()
265 .through(DummyFilterImpl.class, ImmutableMap.of("key", "value")); in configureServlets()
[all …]
DFilterPipelineTest.java42 filter("/*").through(TestFilter.class); in setUp()
43 filter("*.html").through(TestFilter.class); in setUp()
44 filter("/*").through(Key.get(TestFilter.class)); in setUp()
45 filter("*.jsp").through(Key.get(TestFilter.class)); in setUp()
48 filter("/index/*").through(Key.get(NeverFilter.class)); in setUp()
49 filter("/public/login/*").through(Key.get(NeverFilter.class)); in setUp()
DMultiModuleDispatchIntegrationTest.java49 filter("/*").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
52 filter("*.jsp").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
59 filter("*.html").through(TestFilter.class); in testDispatchRequestToManagedPipeline()
60 filter("/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
63 filter("/index/*").through(Key.get(TestFilter.class)); in testDispatchRequestToManagedPipeline()
DInvalidScopeBindingTest.java54 filter("/*").through(MyNonSingletonFilter.class); in testFilterInNonSingletonScopeThrowsServletException()
76 filter("/*").through(MySingletonFilter.class); in testHappyCaseFilter()
80 filter("/*").through(DummyFilterImpl.class); in testHappyCaseFilter()
/external/skia/src/gpu/mtl/
DGrMtlUniformHandler.mm23 case kByte_GrSLType: // fall through
26 case kByte2_GrSLType: // fall through
29 case kByte3_GrSLType: // fall through
34 case kShort_GrSLType: // fall through
37 case kShort2_GrSLType: // fall through
40 case kShort3_GrSLType: // fall through
48 case kHalf_GrSLType: // fall through
51 case kHalf2_GrSLType: // fall through
54 case kHalf3_GrSLType: // fall through
57 case kHalf4_GrSLType: // fall through
[all …]
/external/skqp/src/gpu/mtl/
DGrMtlUniformHandler.mm23 case kByte_GrSLType: // fall through
26 case kByte2_GrSLType: // fall through
29 case kByte3_GrSLType: // fall through
34 case kShort_GrSLType: // fall through
37 case kShort2_GrSLType: // fall through
40 case kShort3_GrSLType: // fall through
48 case kHalf_GrSLType: // fall through
51 case kHalf2_GrSLType: // fall through
54 case kHalf3_GrSLType: // fall through
57 case kHalf4_GrSLType: // fall through
[all …]
/external/u-boot/board/work-microwave/work_92105/
DREADME5 - 1 GB SLC NAND, managed through MLC controller.
13 - SPI (through SSP interface)
16 through the port expander and DACs
25 This file can be loaded in SRAM through a JTAG
26 debugger or through the LPC32XX Service Boot
30 DDR through a JTAG debugger (for instance by
32 U-Boot through e.g. 'loady' or 'tftp' and then
36 SPL assumes (even when loaded through JTAG or
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Dvirtregrewriter-subregliveness.mir12 # Check that we properly recognize that r1 is live through
42 # Check that we properly recognize that r1 is *not* live through
53 ; r1 is not live through so check we are not implicitly using
64 # Check that we properly recognize that r1 is *not* live through
66 # through.
76 ; r1 is not live through so check we are not implicitly using
/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/cpython3/Doc/c-api/
Ddatetime.rst141 Return the month, as an int from 1 through 12.
146 Return the day, as an int from 1 through 31.
155 Return the hour, as an int from 0 through 23.
160 Return the minute, as an int from 0 through 59.
165 Return the second, as an int from 0 through 59.
170 Return the microsecond, as an int from 0 through 999999.
179 Return the hour, as an int from 0 through 23.
184 Return the minute, as an int from 0 through 59.
189 Return the second, as an int from 0 through 59.
194 Return the microsecond, as an int from 0 through 999999.
[all …]
/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/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/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.d3 Help: Operate through an HTTP proxy tunnel (using CONNECT)
6 When an HTTP proxy is used --proxy, this option will make curl tunnel through
9 wants to tunnel through to.
/external/ltp/runtest/
Dquickhit277 # 1. Get object file status through symbolic link file
278 # 2. Receive ENOENT error when accessing non-existent object file through symbolic link file
290 # 1. Receive EEXIST error when creating a directory through a symbolic link file
294 # 1. Receive ENOTDIR error when removing an existing directory through a symbolic link file
298 # 1. Change current working directory through a symbolic link file
299 # 2. Receive ENOENT error when accessing non-existent directory through symbolic link file
304 # 1. Link an object file to a new file through symbolic link file
305 # 2. Receive ENOENT error when accessing non-existent object file through symbolic link file
314 # 1. Change file permissions of object file through a symbolic link file
315 # 2. Receive ENOENT error when accessing non-existent directory through symbolic link file
[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()
/external/deqp/external/openglcts/docs/specs/
DCTS_ARB_texture_filter_minmax.txt61 * Iterate through all supported targets and texture formats.
62 Iterate through TEXTURE_REDUCTION_MODE_ARB modes
76 * Iterate through all supported targets
77 Iterate through TEXTURE_REDUCTION_MODE_ARB modes (MIN, MAX)
78 Iterate through filters (NEAREST_MIPMAP_LINEAR, LINEAR_MIPMAP_LINEAR)
/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>".'

12345678910>>...116