HomeSort by relevance Sort by last modified time
    Searched refs:IsIn (Results 1 - 10 of 10) sorted by null

  /external/hamcrest/library/src/org/hamcrest/collection/
IsIn.java 11 public class IsIn<T> extends BaseMatcher<T> {
14 public IsIn(Collection<T> collection) {
18 public IsIn(T[] elements) {
32 public static <T> Matcher<T> isIn(Collection<T> collection) {
33 return new IsIn<T>(collection);
37 public static <T> Matcher<T> isIn(T[] elements) {
38 return new IsIn<T>(elements);
43 return isIn(elements);
  /art/compiler/optimizing/
find_loops_test.cc 290 ASSERT_TRUE(graph->GetBlocks().Get(3)->GetLoopInformation()->IsIn(
292 ASSERT_FALSE(graph->GetBlocks().Get(2)->GetLoopInformation()->IsIn(
320 ASSERT_FALSE(graph->GetBlocks().Get(4)->GetLoopInformation()->IsIn(
322 ASSERT_FALSE(graph->GetBlocks().Get(2)->GetLoopInformation()->IsIn(
ssa_liveness_analysis.cc 32 return to == nullptr || (current != to && current->IsIn(*to));
47 && inner->IsIn(*outer);
nodes.cc 274 bool HLoopInformation::IsIn(const HLoopInformation& other) const {
nodes.h 240 bool IsIn(const HLoopInformation& other) const;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndrtypes.h 68 unsigned short IsIn : 1;
138 unsigned char IsIn : 1;
ndr64types.h 109 NDR64_UINT16 IsIn : 1;
145 NDR64_UINT8 IsIn : 1;
  /external/hamcrest/library/src/org/hamcrest/
Matchers.java 213 public static <T> org.hamcrest.Matcher<T> isIn(java.util.Collection<T> collection) {
214 return org.hamcrest.collection.IsIn.isIn(collection);
217 public static <T> org.hamcrest.Matcher<T> isIn(T[] param1) {
218 return org.hamcrest.collection.IsIn.isIn(param1);
222 return org.hamcrest.collection.IsIn.isOneOf(elements);
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar 

Completed in 860 milliseconds