HomeSort by relevance Sort by last modified time
    Searched defs:dog (Results 1 - 6 of 6) sorted by null

  /prebuilts/jdk/jdk8/darwin-x86/sample/lambda/DefaultMethods/
Reflection.java 49 * @see Dog
82 * Dog class to illustrate the new reflection API. You can see that:
93 public static class Dog implements Animal {
96 * Return string representation of the go action for Dog
98 * @return string representation of the go action for Dog
102 return "Dog walks on four legs";
106 * Return string representation of the sleep action for Dog
108 * @return string representation of the sleep action for Dog
112 return "Dog sleeps";
123 Dog dog = new Dog() local
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/lambda/DefaultMethods/
Reflection.java 49 * @see Dog
82 * Dog class to illustrate the new reflection API. You can see that:
93 public static class Dog implements Animal {
96 * Return string representation of the go action for Dog
98 * @return string representation of the go action for Dog
102 return "Dog walks on four legs";
106 * Return string representation of the sleep action for Dog
108 * @return string representation of the sleep action for Dog
112 return "Dog sleeps";
123 Dog dog = new Dog() local
    [all...]
  /external/deqp/framework/qphelper/
qpWatchDog.c 21 * \brief Watch dog for detecting timeouts
62 qpWatchDog* dog = (qpWatchDog*)arg; local
63 DE_ASSERT(dog);
67 while (dog->status == STATUS_THREAD_RUNNING)
70 int totalSecondsPassed = (int)((curTime - dog->resetTime) / 1000000ull);
71 int secondsSinceLastTouch = (int)((curTime - dog->lastTouchTime) / 1000000ull);
72 deBool overIntervalLimit = secondsSinceLastTouch > dog->intervalTimeLimit;
73 deBool overTotalLimit = totalSecondsPassed > dog->totalTimeLimit;
79 dog->timeOutFunc(dog, dog->timeOutUserPtr, reason)
92 qpWatchDog* dog = (qpWatchDog*)deCalloc(sizeof(qpWatchDog)); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
StringBuilderTest.java 53 sb.append("Dog");
54 String dog = sb.toString(); local
63 assertEquals("newGuineaSingingDog", dog);
  /external/deqp/modules/gles2/performance/
es2pTextureUploadTests.cpp 369 qpWatchDog* dog = m_testCtx.getWatchDog(); local
370 if (dog)
371 qpWatchDog_touch(dog);
  /external/mockito/src/test/java/org/mockitousage/customization/
BDDMockitoTest.java 212 Dog dog = mock(Dog.class); local
214 willCallRealMethod().given(dog).bark();
216 Assertions.assertThat(dog.bark()).isEqualTo("woof");
222 Dog dog = mock(Dog.class); local
224 given(dog.bark()).willCallRealMethod();
226 Assertions.assertThat(dog.bark()).isEqualTo("woof")
    [all...]

Completed in 721 milliseconds