Home
last modified time | relevance | path

Searched refs:filterRegex (Results 1 – 8 of 8) sorted by relevance

/external/guice/extensions/servlet/test/com/google/inject/servlet/
DEdslTest.java69 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()
78 filterRegex("/person/[0-9]*").through(new DummyFilterImpl(), in testConfigureServlets()
DExtensionSpiTest.java158 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()
164 filterRegex("/key[0-9]/keyvalues", "/key[0-9]/keyvalues/2").through( in configureServlets()
166 filterRegex("/instance[0-9]/keyvalues", "/instance[0-9]/keyvalues/2").through( in configureServlets()
DVarargsFilterDispatchIntegrationTest.java133 filterRegex("/[A-Za-z]*", "/index").through(TestFilter.class); in testDispatchFilterPipelineWithRegexMatching()
136 filterRegex("\\w").through(Key.get(TestFilter.class)); in testDispatchFilterPipelineWithRegexMatching()
DFilterDispatchIntegrationTest.java182 filterRegex("/[A-Za-z]*").through(TestFilter.class); in testDispatchFilterPipelineWithRegexMatching()
183 filterRegex("/index").through(TestFilter.class); in testDispatchFilterPipelineWithRegexMatching()
185 filterRegex("\\w").through(Key.get(TestFilter.class)); in testDispatchFilterPipelineWithRegexMatching()
DServletDispatchIntegrationTest.java274 filterRegex("(.)*\\.html").through(TestFilter.class); in testQueryInRequestUri_regex()
/external/parameter-framework/upstream/tools/coverage/
Daplog2coverage.sh90 filterRegex="$1"
126 xargs --null grep --extended-regexp "$filterRegex" |
/external/guice/extensions/servlet/src/com/google/inject/servlet/
DServletModule.java261 protected final FilterKeyBindingBuilder filterRegex(String regex, String... regexes) { in filterRegex() method in ServletModule
263 .filterRegex(ImmutableList.<String>builder().add(regex).add(regexes).build()); in filterRegex()
DFiltersModuleBuilder.java47 public ServletModule.FilterKeyBindingBuilder filterRegex(List<String> regexes) { in filterRegex() method in FiltersModuleBuilder