Home
last modified time | relevance | path

Searched refs:dog (Results 1 – 25 of 126) sorted by relevance

123456

/third_party/pcre2/pcre2/testdata/
Dgrepinput15 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 …]
/third_party/vk-gl-cts/framework/qphelper/
DqpWatchDog.c68 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 …]
DqpWatchDog.h38 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);
/third_party/typescript/tests/baselines/reference/
DbadInferenceLowerPriorityThanGoodInference.types50 goofus((a: string) => ({ dog() { return a; } }));
51 >goofus((a: string) => ({ dog() { return a; } })) : void
53 >(a: string) => ({ dog() { return a; } }) : (a: string) => { dog(): string; }
55 >({ dog() { return a; } }) : { dog(): string; }
56 >{ dog() { return a; } } : { dog(): string; }
57 >dog : () => string
60 goofus((a: string) => ({ dog: function() { return a; } }));
61 >goofus((a: string) => ({ dog: function() { return a; } })) : void
63 >(a: string) => ({ dog: function() { return a; } }) : (a: string) => { dog: () => string; }
65 >({ dog: function() { return a; } }) : { dog: () => string; }
[all …]
DstringLiteralTypesOverloads05.types5 interface Dog extends Animal { dog: {} }
6 >dog : {}
14 function doThing(x: "dog"): Dog;
15 >doThing : { (x: "dog"): Dog; (x: "cat"): Cat; (x: string): Animal; }
16 >x : "dog"
19 >doThing : { (x: "dog"): Dog; (x: "cat"): Cat; (x: string): Animal; }
23 >doThing : { (x: "dog"): Dog; (x: "cat"): Cat; (x: string): Animal; }
27 >doThing : { (x: "dog"): Dog; (x: "cat"): Cat; (x: string): Animal; }
DmappedTypeOverlappingStringEnumKeys.types11 DOG = "dog"
13 >"dog" : "dog"
51 >CatMap : { cat: (TerrestrialCat | AlienCat)[]; dog: never[]; }
60 …} ], dog: [] as never[]} : { cat: ({ type: TerrestrialAnimalTypes.CAT; address: string; } | { ty…
85 dog: [] as never[]
86 >dog : never[]
DnarrowingOfQualifiedNames.types269 type Dog = { type: 'dog', saysWoof: true }
270 >Dog : { type: 'dog'; saysWoof: true; }
271 >type : "dog"
282 if(pet.type === 'dog') {
283 >pet.type === 'dog' : boolean
284 >pet.type : "fish" | "dog"
286 >type : "fish" | "dog"
287 >'dog' : "dog"
310 if(pet.type === 'dog') {
311 >pet.type === 'dog' : boolean
[all …]
DassertionFunctionsCanNarrowByDiscriminant.types12 type: 'dog';
13 >type : "dog"
40 >animal.type : "cat" | "dog"
42 >type : "cat" | "dog"
63 >animalOrUndef?.type : "cat" | "dog" | undefined
65 >type : "cat" | "dog" | undefined
DbadInferenceLowerPriorityThanGoodInference.js22 goofus((a: string) => ({ dog() { return a; } })); method
23 goofus((a: string) => ({ dog: function() { return a; } })); method
35 goofus(function (a) { return ({ dog: function () { return a; } }); });
36 goofus(function (a) { return ({ dog: function () { return a; } }); });
DbadInferenceLowerPriorityThanGoodInference.symbols54 goofus((a: string) => ({ dog() { return a; } }));
57 >dog : Symbol(dog, Decl(badInferenceLowerPriorityThanGoodInference.ts, 20, 24))
60 goofus((a: string) => ({ dog: function() { return a; } }));
63 >dog : Symbol(dog, Decl(badInferenceLowerPriorityThanGoodInference.ts, 21, 24))
DerrorsOnUnionsOfOverlappingObjects01.types83 interface CatDog { cat: any, dog: any }
85 >dog : any
106 addToZoo({ dog: "Barky McBarkface" });
107 >addToZoo({ dog: "Barky McBarkface" }) : void
109 >{ dog: "Barky McBarkface" } : { dog: string; }
110 >dog : string
DparserNotHexLiteral1.types2 var x = {e0: 'cat', x0: 'dog'};
4 >{e0: 'cat', x0: 'dog'} : { e0: string; x0: string; }
8 >'dog' : "dog"
DerrorsOnUnionsOfOverlappingObjects01.symbols78 interface CatDog { cat: any, dog: any }
81 >dog : Symbol(CatDog.dog, Decl(errorsOnUnionsOfOverlappingObjects01.ts, 30, 28))
110 addToZoo({ dog: "Barky McBarkface" });
112 >dog : Symbol(dog, Decl(errorsOnUnionsOfOverlappingObjects01.ts, 41, 10))
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Doutdated.js.test.cjs10 cat:dog@latest 1.0.0 2.0.0 2.0.0 node_modules/cat prefix
17 dog 1.0.1 1.0.1 2.0.0 node_modules/dog prefix
39 "dog": {
44 "location": "{CWD}/prefix/node_modules/dog",
72 "dog": {
77 "location": "{CWD}/prefix/node_modules/dog"
91 dog 1.0.1 1.0.1 2.0.0 node_modules/dog prefix dependencies
98 dog 1.0.1 1.0.1 2.0.0 node_modules/dog prefix
106 dog 1.0.1 1.0.1 2.0.0 node_modules/dog prefix
114 dog 1.0.1 1.0.1 2.0.0 node_modules/dog prefix
[all …]
Dls.js.test.cjs67 \`-- dog@1.0.0
104 | \`-- dog@1.0.0
112 \`-- dog@2.0.0
127 {CWD}/prefix/node_modules/dog
134 {CWD}/prefix/node_modules/dog
159 {CWD}/prefix/node_modules/prod-dep/node_modules/dog:dog@2.0.0
160 {CWD}/prefix/node_modules/dog:dog@1.0.0
167 {CWD}/prefix/node_modules/dog:dog@1.0.0
179 {CWD}/prefix/node_modules/prod-dep/node_modules/dog:dog@2.0.0
180 {CWD}/prefix/node_modules/dog:dog@1.0.0
[all …]
Dsbom.js.test.cjs61 "name": "dog",
62 "SPDXID": "SPDXRef-Package-dog-1.0.0",
64 "packageFileName": "node_modules/foo/node_modules/dog",
73 "referenceLocator": "pkg:npm/dog@1.0.0"
90 "spdxElementId": "SPDXRef-Package-dog-1.0.0",
303 "bom-ref": "dog@1.0.0",
305 "name": "dog",
308 "purl": "pkg:npm/dog@1.0.0",
312 "value": "node_modules/foo/node_modules/dog"
333 "dog@1.0.0"
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/enums/enum_declarations/
Denum_declarations_2.ts31 var dog = Animal.Dog; variable
32 Assert.isNumber(dog);
33 Assert.isString(Animal[dog]);
34 Assert.equal("Dog", Animal[dog]);
/third_party/node/deps/npm/node_modules/foreground-child/dist/mjs/
Dwatchdog.js29 const dog = spawn(process.execPath, ['-e', watchdogCode, String(child.pid)], { constant
32 dog.on('exit', () => (dogExited = true));
35 dog.kill('SIGTERM');
37 return dog;
/third_party/node/deps/npm/test/lib/commands/
Dls.js25 dog: '^1.0.0', property
29 dog: { property
62 dog: '^2.0.0', property
66 dog: { property
2705 dog: { property
2740 dog: { property
2756 dog: { property
2805 dog: { property
2893 dog: '^1.0.0', property
2984 dog: { property
[all …]
Doutdated.js19 dog: '2.0.0', property
35 dog: { property
92 dog: '^1.0.0', property
111 dog: '2.0.0', property
115 dog: { property
129 dog: { property
149 dog: '^1.0.0', property
161 dog: '2.0.0', property
165 dog: { property
179 dog: { property
/third_party/node/deps/npm/node_modules/foreground-child/dist/cjs/
Dwatchdog.js32 …const dog = (0, child_process_1.spawn)(process.execPath, ['-e', watchdogCode, String(child.pid)], { constant
35 dog.on('exit', () => (dogExited = true));
38 dog.kill('SIGTERM');
40 return dog;
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/4.1/abstract_members_can_not_be_marked_async/
Dabstract_members_can_not_be_marked_async.ts41 let dog = new Dog("male"); variable
42 Assert.equal(dog.eat(), 1);
43 Assert.equal(dog.name, "dog");
/third_party/typescript/tests/baselines/reference/tsbuildWatch/demo/
Dupdates-with-bad-reference.js194 animals/dog.ts:1:20
207 animals/dog.ts:1:20
230 /user/username/projects/demo/animals/dog.ts
237 /user/username/projects/demo/animals/dog.ts
244 /user/username/projects/demo/animals/dog.ts (used version)
263 /user/username/projects/demo/animals/dog.ts:
482 animals/dog.ts:1:20
495 animals/dog.ts:1:20
510 /user/username/projects/demo/animals/dog.ts
515 /user/username/projects/demo/animals/dog.ts
[all …]
/third_party/json/docs/examples/
Dbasic_json__CompatibleType.output19 "The quick brown fox jumps over the lazy dog."
20 "The quick brown fox jumps over the lazy dog."
21 "The quick brown fox jumps over the lazy dog."
/third_party/python/Lib/test/
Dtokenize_tests.txt82 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\

123456