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

  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
IsInTest.java 15 return new IsIn<String>(elements);
20 Matcher<String> isIn = new IsIn<String>(collection);
22 assertMatches("a", isIn, "a");
23 assertMatches("b", isIn, "b");
24 assertMatches("c", isIn, "c");
25 assertDoesNotMatch("d", isIn, "d");
29 Matcher<String> isIn = new IsIn<String>(elements);
31 assertMatches("a", isIn, "a")
    [all...]
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsIn.java 10 public class IsIn<T> extends BaseMatcher<T> {
13 public IsIn(Collection<T> collection) {
17 public IsIn(T[] elements) {
37 * <pre>assertThat("foo", isIn(Arrays.asList("bar", "foo")))</pre>
46 public static <T> Matcher<T> isIn(Collection<T> collection) {
61 return new IsIn<T>(collection);
68 * <pre>assertThat("foo", isIn(new String[]{"bar", "foo"}))</pre>
77 public static <T> Matcher<T> isIn(T[] elements) {
92 return new IsIn<T>(elements);
  /art/compiler/optimizing/
licm.cc 38 if (input_loop != nullptr && input_loop->IsIn(*info)) {
50 if (input_loop != nullptr && input_loop->IsIn(*info)) {
find_loops_test.cc 291 ASSERT_TRUE(graph->GetBlocks()[3]->GetLoopInformation()->IsIn(
293 ASSERT_FALSE(graph->GetBlocks()[2]->GetLoopInformation()->IsIn(
321 ASSERT_FALSE(graph->GetBlocks()[4]->GetLoopInformation()->IsIn(
323 ASSERT_FALSE(graph->GetBlocks()[2]->GetLoopInformation()->IsIn(
linear_order.cc 33 && inner->IsIn(*outer);
loop_optimization.cc 360 } else if (loop_info->IsIn(*last_loop_->loop_info)) {
367 while (last_loop_->outer != nullptr && !loop_info->IsIn(*last_loop_->outer->loop_info)) {
    [all...]
gvn_test.cc 367 ASSERT_TRUE(inner_loop_header->GetLoopInformation()->IsIn(
nodes.cc 715 bool HLoopInformation::IsIn(const HLoopInformation& other) const {
    [all...]
nodes.h 815 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/hamcrest-library/src/main/java/org/hamcrest/
Matchers.java     [all...]
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /system/tools/aidl/
aidl_language.cpp 145 if (a->IsIn()) { in_arguments_.push_back(a.get()); }
aidl_language.h 122 bool IsIn() const { return direction_ & IN_DIR; }
generate_cpp.cpp 287 if (a->IsIn()) {
454 if (a->IsIn()) {
  /prebuilts/misc/common/robolectric/lib/
hamcrest-library-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.3/
hamcrest-library-1.3.jar 

Completed in 374 milliseconds