/external/deqp/framework/qphelper/ |
D | qpWatchDog.c | 68 qpWatchDog* dog = (qpWatchDog*)arg; in watchDogThreadFunc() local 69 DE_ASSERT(dog); in watchDogThreadFunc() 73 while (dog->status == STATUS_THREAD_RUNNING) in watchDogThreadFunc() 76 int totalSecondsPassed = (int)((curTime - dog->resetTime) / 1000000ull); in watchDogThreadFunc() 77 int secondsSinceLastTouch = (int)((curTime - dog->lastTouchTime) / 1000000ull); in watchDogThreadFunc() 78 deBool overIntervalLimit = secondsSinceLastTouch > dog->intervalTimeLimit; in watchDogThreadFunc() 79 deBool overTotalLimit = totalSecondsPassed > dog->totalTimeLimit; in watchDogThreadFunc() 85 dog->timeOutFunc(dog, dog->timeOutUserPtr, reason); in watchDogThreadFunc() 98 qpWatchDog* dog = (qpWatchDog*)deCalloc(sizeof(qpWatchDog)); in qpWatchDog_create() local 99 if (!dog) in qpWatchDog_create() [all …]
|
D | qpWatchDog.h | 38 typedef void (*qpWatchDogFunc) (qpWatchDog* dog, void* userPtr, qpTimeoutReason reason); 43 void qpWatchDog_destroy (qpWatchDog* dog); 44 void qpWatchDog_reset (qpWatchDog* dog); 45 void qpWatchDog_touch (qpWatchDog* dog); 46 void qpWatchDog_touchAndDisableIntervalTimeLimit(qpWatchDog *dog); 47 void qpWatchDog_touchAndEnableIntervalTimeLimit(qpWatchDog *dog);
|
/external/pcre/dist2/testdata/ |
D | grepinput | 15 The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the 16 lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox 17 jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick 18 brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. 20 The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the 21 lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox 22 jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick 23 brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. 25 The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the 26 lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox [all …]
|
D | grepoutput | 115 583:brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. 456 over the lazy dog. 700 The quick brown fx jumps over the lazy dog. 703 The quick brown fx jumps over the lazy dog. 706 The quick brown fx jumps over the lazy dog. 878 over the lazy dog. 882 over the lazy dog. 960 The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the 961 lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
D | grepinputv | 3 over the lazy dog.
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/ |
D | TestNonStaticInnerClassInList32.java | 30 Dog2 dog = new Dog2(); in testInnerList() local 31 dog.name = "Spike"; in testInnerList() 32 dog.legs = new ArrayList<Dog2.Leg>(); in testInnerList() 33 dog.legs.add(dog.new Leg()); in testInnerList() 34 dog.legs.add(dog.new Leg()); in testInnerList() 35 dog.legs.get(0).length = 5; in testInnerList() 36 dog.legs.get(1).length = 4; in testInnerList() 40 String dogJson = mapper.writeValueAsString(dog); in testInnerList()
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | machine-outliner-disubprogram.ll | 8 %dog = alloca i32, align 4 11 call void @llvm.dbg.declare(metadata i32* %dog, metadata !11, metadata !DIExpression()), !dbg !13 12 store i32 16, i32* %dog, align 4, !dbg !13 24 %dog = alloca i32, align 4 27 call void @llvm.dbg.declare(metadata i32* %dog, metadata !20, metadata !DIExpression()), !dbg !21 28 store i32 16, i32* %dog, align 4, !dbg !21 38 %dog = alloca i32, align 4 41 call void @llvm.dbg.declare(metadata i32* %dog, metadata !28, metadata !DIExpression()), !dbg !29 42 store i32 16, i32* %dog, align 4, !dbg !29 52 %dog = alloca i32, align 4 [all …]
|
/external/auto/value/userguide/ |
D | builders.md | 52 Animal dog = Animal.builder().setName("dog").setNumberOfLegs(4).build(); 53 assertEquals("dog", dog.name()); 54 assertEquals(4, dog.numberOfLegs()); 58 Animal.builder().setName("dog").setNumberOfLegs(4).build().equals(dog)); 60 Animal.builder().setName("cat").setNumberOfLegs(4).build().equals(dog)); 62 Animal.builder().setName("dog").setNumberOfLegs(2).build().equals(dog)); 64 assertEquals("Animal{name=dog, numberOfLegs=4}", dog.toString());
|
D | index.md | 175 Animal dog = Animal.create("dog", 4); 176 assertEquals("dog", dog.name()); 177 assertEquals(4, dog.numberOfLegs()); 180 assertTrue(Animal.create("dog", 4).equals(dog)); 181 assertFalse(Animal.create("cat", 4).equals(dog)); 182 assertFalse(Animal.create("dog", 2).equals(dog)); 184 assertEquals("Animal{name=dog, numberOfLegs=4}", dog.toString());
|
/external/llvm-project/llvm/test/Analysis/IRSimilarityIdentifier/ |
D | basic.ll | 9 ; CHECK-NEXT: Function: dog, Basic Block: entry 14 ; CHECK-NEXT: Function: dog, Basic Block: entry 19 ; CHECK-NEXT: Function: dog, Basic Block: entry 24 ; CHECK-NEXT: Function: dog, Basic Block: entry 29 ; CHECK-NEXT: Function: dog, Basic Block: entry 82 define void @dog() {
|
/external/python/cpython2/Lib/test/ |
D | tokenize_tests.txt | 82 the 'lazy' dog. 84 y = '\nThe "quick"\nbrown fox\njumps over\nthe \'lazy\' dog.\n' 89 the 'lazy' dog. 95 the 'lazy' dog.\n\ 101 the \'lazy\' dog.\n\
|
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/ |
D | AutoOneOfTest.java | 69 public static Pet create(Dog dog) { in create() argument 70 return AutoOneOf_AutoOneOfTest_Pet.dog(dog); in create() 81 public abstract Dog dog(); in dog() method in AutoOneOfTest.Pet 118 assertThat(petMarvin.dog()).isSameInstanceAs(marvin); in getCorrectType() 211 public static PetWithGet create(Dog dog) { in create() argument 212 return AutoOneOf_AutoOneOfTest_PetWithGet.dog(dog); in create() 312 public static OneOfOne create(Dog dog) { in create() argument 313 return AutoOneOf_AutoOneOfTest_OneOfOne.dog(dog); in create()
|
/external/python/cpython3/Lib/test/ |
D | tokenize_tests.txt | 82 the 'lazy' dog. 84 y = '\nThe "quick"\nbrown fox\njumps over\nthe \'lazy\' dog.\n' 89 the 'lazy' dog. 95 the 'lazy' dog.\n\ 101 the \'lazy\' dog.\n\
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ |
D | TestWithGenerics.java | 140 Dog dog = new Dog("Fluffy", 3); in testWrapperWithGetter() local 141 String json = MAPPER.writeValueAsString(new ContainerWithGetter<Animal>(dog)); in testWrapperWithGetter() 149 Dog dog = new Dog("Fluffy", 3); in testWrapperWithField() local 150 String json = MAPPER.writeValueAsString(new ContainerWithField<Animal>(dog)); in testWrapperWithField() 158 Dog dog = new Dog("Fluffy", 3); in testWrapperWithExplicitType() local 159 ContainerWithGetter<Animal> c2 = new ContainerWithGetter<Animal>(dog); in testWrapperWithExplicitType()
|
D | TestTypedContainerSerialization.java | 111 Dog dog = new Dog("medor"); in testPolymorphicWithContainer() local 112 dog.setBoneCount(3); in testPolymorphicWithContainer() 114 c1.setAnimal(dog); in testPolymorphicWithContainer() 119 c2.setAnimal(dog); in testPolymorphicWithContainer()
|
/external/tcpdump/tests/ |
D | pgm_zmtp1v.out | 26 0x0020: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The 29 0x0050: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu 37 0x0000: 7220 7468 6520 6c61 7a79 2064 6f67 2e20 r.the.lazy.dog.. 40 0x0030: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The 43 0x0060: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu 51 0x0010: 2064 6f67 2e20 5468 6520 7175 6963 6b20 .dog..The.quick.
|
D | epgm_zmtp1v.out | 30 0x0020: 6865 206c 617a 7920 646f 672e 2054 6865 he.lazy.dog..The 33 0x0050: 6c61 7a79 2064 6f67 2e20 5468 6520 7175 lazy.dog..The.qu 42 0x0010: 7a79 2064 6f67 2e20 5468 6520 7175 6963 zy.dog..The.quic 45 0x0040: 646f 672e 2054 6865 2071 7569 636b 2062 dog..The.quick.b 47 0x0060: 7665 7220 7468 6520 6c61 7a79 2064 6f67 ver.the.lazy.dog 56 0x0020: 2064 6f67 2e20 5468 6520 7175 6963 6b20 .dog..The.quick.
|
/external/cros/system_api/dbus/smbprovider/ |
D | directory_entry.proto | 98 // The paths are relative to the mount root. (e.g. "/testfolder/dog.jpg") 107 // Paths are relative to the mount root, e.g. "/animals/dog.jpg". 138 // The paths are relative to the mount root. (e.g. "/testfolder/dog.jpg") 149 // e.g. "/animals/dog.jpg". 158 // e.g. "/animals/dog.jpg". 193 // Paths are relative to the mount root. (e.g. "/testfolder/dog.jpg") 197 // root. (e.g. "/testfolder/dog.jpg") 206 // path. Paths are relative to the mount root. (e.g. "/testfolder/dog.jpg") 210 // (e.g. "/testfolder/dog.jpg")
|
/external/python/pybind11/tests/ |
D | test_tagbased_polymorphic.py | 22 assert [dog.bark() for dog in zoo[:3]] == [
|
/external/mockito/src/test/java/org/mockitousage/customization/ |
D | BDDMockitoTest.java | 212 Dog dog = mock(Dog.class); in should_stub_by_delegating_to_real_method() local 214 willCallRealMethod().given(dog).bark(); in should_stub_by_delegating_to_real_method() 216 Assertions.assertThat(dog.bark()).isEqualTo("woof"); in should_stub_by_delegating_to_real_method() 222 Dog dog = mock(Dog.class); in should_stub_by_delegating_to_real_method_using_typical_stubbing_syntax() local 224 given(dog.bark()).willCallRealMethod(); in should_stub_by_delegating_to_real_method_using_typical_stubbing_syntax() 226 Assertions.assertThat(dog.bark()).isEqualTo("woof"); in should_stub_by_delegating_to_real_method_using_typical_stubbing_syntax()
|
/external/tensorflow/tensorflow/lite/java/ovic/src/testdata/ |
D | coco_labels.txt | 18 dog 58 hot dog
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | discover_unittest.py | 131 def __init__(self, dog=1, cat=None, cow=None, fud='a'): argument 136 def __init__(self, x, dog=1, cat=None, fish=None, fud='a'): argument
|
/external/brotli/tests/testdata/ |
D | quickfox | 1 The quick brown fox jumps over the lazy dog
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Ordered and unordered lists.text | 89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
|
/external/markdown/tests/markdown-test/ |
D | ordered-and-unordered-list.txt | 89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
|