HomeSort by relevance Sort by last modified time
    Searched refs:Filter (Results 251 - 275 of 1344) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
WinEHFuncInfo.h 56 /// Holds the filter expression function.
57 const Function *Filter = nullptr;
82 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
WinEHFuncInfo.h 56 /// Holds the filter expression function.
57 const Function *Filter = nullptr;
82 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
WinEHFuncInfo.h 54 /// Holds the filter expression function.
55 const Function *Filter = nullptr;
80 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
  /prebuilts/go/darwin-x86/test/chan/
sieve1.go 24 func Filter(in <-chan int, out chan<- int, prime int) {
32 // The prime sieve: Daisy-chain Filter processes together.
41 go Filter(ch, ch1, prime)
  /prebuilts/go/linux-x86/test/chan/
sieve1.go 24 func Filter(in <-chan int, out chan<- int, prime int) {
32 // The prime sieve: Daisy-chain Filter processes together.
41 go Filter(ch, ch1, prime)
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowProfilingOverviewServlet.java 29 import com.google.appengine.api.datastore.Query.Filter;
75 // Create a query for test runs matching the time window filter
79 Filter deviceFilter;
106 Filter startFilter =
111 Filter endFilter =
116 Filter timeFilter = Query.CompositeFilterOperator.and(startFilter, endFilter);
118 Filter filter = Query.CompositeFilterOperator.and(timeFilter, deviceFilter); local
143 .setFilter(filter);
  /art/runtime/
dexopt_test.cc 50 CompilerFilter::Filter filter,
72 args.push_back("--compiler-filter=" + CompilerFilter::NameOfFilter(filter));
81 if (CompilerFilter::DependsOnProfile(filter)) {
119 EXPECT_EQ(filter, odex_file->GetCompilerFilter());
129 if (CompilerFilter::DependsOnImageChecksum(filter)) {
138 if (CompilerFilter::IsAotCompilationEnabled(filter)) {
154 CompilerFilter::Filter filter) {
    [all...]
oat_file_assistant.h 51 // The default compile filter to use when optimizing dex file at load time if they
53 static const CompilerFilter::Filter kDefaultCompilerFilterForDexLoading =
71 // is out of date with respect to the target compiler filter.
167 // compiler filter is at least as good as an oat file generated with the
168 // given compiler filter otherwise, if its set to true, it checks whether
169 // the oat file generated with the target filter will be downgraded as
170 // compared to the current state. For example, if the current compiler filter is
171 // quicken, and target filter is verify, it will recommend to dexopt, while
172 // if the target filter is speed profile, it will recommend to keep it in its
176 // If the purpose of the dexopt is to downgrade the compiler filter,
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/util/
PerformanceUtil.java 169 Query.Filter startFilter =
174 Query.Filter endFilter =
179 Query.Filter timeFilter = Query.CompositeFilterOperator.and(startFilter, endFilter);
181 Query.Filter deviceFilter;
193 Query.Filter filter = Query.CompositeFilterOperator.and(timeFilter, deviceFilter); local
200 .setFilter(filter);
  /cts/tests/core/runner/src/com/android/cts/core/runner/support/
TestNgRunner.java 23 import org.junit.runner.manipulation.Filter;
78 public void filter(Filter filter) throws NoTestsRemainException { method in class:TestNgRunner
79 mDescription = filterDescription(mDescription, filter);
156 * Recursively (preorder traversal) apply the filter to all the descriptions.
158 * @return null if the filter rejects the whole tree.
160 private static Description filterDescription(Description desc, Filter filter) {
161 if (!filter.shouldRun(desc)) { // XX: Does the filter itself do the recursion
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 215 /// Filter on the checks performed.
216 const ChecksFilter &Filter;
222 Mgr (InMgr), BR(InBR), Filter(InFilter) {}
464 if (Filter.check_MissingInvalidationMethod)
465 reportNoInvalidationMethod(Filter.checkName_MissingInvalidationMethod,
475 if (!Filter.check_InstanceVariableInvalidation)
522 reportNoInvalidationMethod(Filter.checkName_InstanceVariableInvalidation,
565 BR.EmitBasicReport(MethodD, Filter.checkName_InstanceVariableInvalidation,
571 IvarD, Filter.checkName_InstanceVariableInvalidation,
729 ChecksFilter Filter;
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ManagedFilterPipeline.java 31 import javax.servlet.Filter;
96 Set<Filter> initializedSoFar = Sets.newIdentityHashSet();
112 //lazy init of filter pipeline (OK by the servlet specification). This is needed
128 * We cannot forward from a web.xml Servlet/JSP to a guice-servlet (because the filter pipeline
164 Set<Filter> destroyedSoFar = Sets.newIdentityHashSet();
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
InjectedFilterPipelineTest.java 21 import javax.servlet.Filter;
46 filter("/*").through(TestFilter.class);
47 filter("*.html").through(TestFilter.class);
48 filter("/*").through(Key.get(TestFilter.class));
49 filter("*.jsp").through(Key.get(TestFilter.class));
52 filter("/index/*").through(Key.get(NeverFilter.class));
53 filter("/public/login/*").through(Key.get(NeverFilter.class));
63 filter("*.html").through(NeverFilter.class);
64 filter("/non-jsp/*").through(Key.get(NeverFilter.class));
67 filter("/index/*").through(Key.get(TestFilter.class))
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/invocation/
InvocationsFinder.java 12 import org.mockito.internal.util.collections.ListUtil.Filter;
24 return ListUtil.filter(invocations, new RemoveNotMatching(wanted));
29 return ListUtil.filter(unverified, new RemoveNotMatching(wanted));
120 LinkedList<Invocation> verifiedOnly = ListUtil.filter(invocations, new RemoveUnverifiedInOrder(context));
141 private static class RemoveNotMatching implements Filter<Invocation> {
153 private static class RemoveUnverifiedInOrder implements Filter<Invocation> {

Completed in 1073 milliseconds

<<11121314151617181920>>