HomeSort by relevance Sort by last modified time
    Searched refs:booleanArray (Results 1 - 25 of 27) sorted by null

1 2

  /external/mockito/src/test/java/org/mockitousage/stubbing/
StubbingWithAdditionalAnswersTest.java 192 boolean[] booleanArray = { true, false };
193 assertThat(iMethods.fourArgumentMethod(1, "string1", "string2", booleanArray)).isEqualTo("answered");
194 verify(target, times(1)).fourArgumentMethod(1, "string1", "string2", booleanArray);
209 boolean[] booleanArray = { true, false };
210 iMethods.fourArgumentMethod(1, "string1", "string2", booleanArray);
213 verify(target, times(1)).fourArgumentMethod(1, "string1", "string2", booleanArray);
  /frameworks/base/core/tests/coretests/src/android/os/
IAidlTest.aidl 34 boolean[] booleanArray(in boolean[] a0, out boolean[] a1, inout boolean[] a2);
AidlTest.java 123 public boolean[] booleanArray(boolean[] a0, boolean[] a1, boolean[] a2) {
291 boolean[] br = mRemote.booleanArray(b0, b1, b2);
  /external/caliper/examples/src/main/java/examples/
CopyArrayBenchmark.java 246 boolean[] booleanArray;
257 booleanArray = new boolean[size];
270 booleanArray[i] = num % 2 == 0;
292 dummy += System.identityHashCode(strategy.copy(booleanArray));
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
InjectedThing.java 66 @Inject boolean[] booleanArray;
135 boolean[] booleanArray,
203 @Inject void booleanArray(boolean[] booleanArray) {}
  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 152 boolean[] booleanArray = mBundle.getBooleanArray(KEY);
153 assertNotNull(booleanArray);
154 assertEquals(3, booleanArray.length);
155 assertEquals(true, booleanArray[0]);
156 assertEquals(false, booleanArray[1]);
157 assertEquals(true, booleanArray[2]);
159 booleanArray = mBundle.getBooleanArray(KEY);
160 assertNotNull(booleanArray);
161 assertEquals(3, booleanArray.length);
162 assertEquals(true, booleanArray[0])
    [all...]
ParcelTest.java 397 boolean[] booleanArray = {true, false, true, false};
398 boolean[] booleanArray2 = new boolean[booleanArray.length];
400 p.writeValue(booleanArray);
403 for (int i = 0; i < booleanArray.length; i++) {
404 assertEquals(booleanArray[i], booleanArray2[i]);
    [all...]
  /art/runtime/
transaction_test.cc 375 mirror::BooleanArray* booleanArray = booleanArrayField->GetObject(h_klass.Get())->AsBooleanArray();
376 ASSERT_TRUE(booleanArray != nullptr);
377 ASSERT_EQ(booleanArray->GetLength(), 1);
378 ASSERT_EQ(booleanArray->GetWithoutChecks(0), false);
448 booleanArray->SetWithoutChecks<true>(0, true);
460 EXPECT_EQ(booleanArray->GetWithoutChecks(0), false);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBundleTest.java 153 public void booleanArray() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java 61 boolean[] booleanArray;
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
Transformers.java     [all...]
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-tree/6.1.1/
asm-tree-6.1.1.jar 
  /frameworks/base/tools/aapt/
ResourceTable.cpp 166 static const char16_t booleanArray[] =
189 { booleanArray, sizeof(booleanArray)/2, ResTable_map::TYPE_BOOLEAN,
    [all...]
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/6.1.1/
asm-6.1.1.jar 
  /prebuilts/tools/common/m2/repository/commons-beanutils/commons-beanutils/1.7.0/
commons-beanutils-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.13/
FastInfoset-1.2.13.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /external/guice/extensions/struts2/lib/
xwork-core-2.2.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/kotlin-compiler/26.2.0-alpha16/
kotlin-compiler-26.2.0-alpha16.jar 

Completed in 590 milliseconds

1 2