Home
last modified time | relevance | path

Searched refs:What (Results 1 – 25 of 1385) sorted by relevance

12345678910>>...56

/third_party/protobuf/.github/ISSUE_TEMPLATE/
Dbug_report.md7 **What version of protobuf and what language are you using?**
11 **What operating system (Linux, Windows, ...) and version?**
13 **What runtime / compiler are you using (e.g., python version or gcc version)**
15 **What did you do?**
22 **What did you expect to see**
24 **What did you see instead?**
/third_party/rust/crates/regex/.github/ISSUE_TEMPLATE/
Dbug_report.md10 #### What version of regex are you using?
19 #### What are the steps to reproduce the behavior?
27 #### What is the actual behavior?
32 #### What is the expected behavior?
34 What do you expect the output to be?
/third_party/pulseaudio/.gitlab/issue_templates/
DBug.md17 ### What is the current *bug* behavior?
18 (What actually happens)
20 ### What is the expected *correct* behavior?
21 (What you should see instead)
/third_party/skia/third_party/externals/tint/docs/
Dexperimental_extensions.md38 - What is your target date for declaring the experiment a success or
41 - What experience are you hoping to gain? Do you have target metrics?
42 - What approvals, if any, do you need from W3C? What is your plan to
/third_party/rust/crates/memchr/bench/data/opensubtitles/
Den-huge.txt2 What for are you mixing in?
285 - What colour horse your man riding?
299 - What'll you do with his horse?
335 - What takes you to end of track?
344 - What are you doing here?
406 What do you say we go in and spend it?
451 What else did you notice?
480 What'll it be, gents?
523 What about you, Torgenson?
564 - What's wrong with it?
[all …]
Dzh-medium.txt37 床位怎麼辦 外面在傳你們收太多病人 What about beds?
55 你在這兒幹嘛 What are you doing here?
167 什麼 What?
270 它還能幹些什麼 What else does it do?
271 它還能幹些什麼呢 What else does it have to do?
313 什麼 What?
354 看看是什麼東西 What do we got here?
380 他做什麼的 What's he do?
433 你是什麼 魔鬼嗎 What are you, the devil?
434 如果我已經失去理智了怎麼辦 What if I lost my mind already?
[all …]
Dzh-huge.txt37 床位怎麼辦 外面在傳你們收太多病人 What about beds?
55 你在這兒幹嘛 What are you doing here?
167 什麼 What?
270 它還能幹些什麼 What else does it do?
271 它還能幹些什麼呢 What else does it have to do?
313 什麼 What?
354 看看是什麼東西 What do we got here?
380 他做什麼的 What's he do?
433 你是什麼 魔鬼嗎 What are you, the devil?
434 如果我已經失去理智了怎麼辦 What if I lost my mind already?
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DMemorySSAUpdater.h141 void moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where);
142 void moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where);
143 void moveToPlace(MemoryUseOrDef *What, BasicBlock *BB,
265 void moveTo(MemoryUseOrDef *What, BasicBlock *BB, WhereType Where);
/third_party/mesa3d/docs/_extra/specs/
DMESA_multithread_makecurrent.spec106 (1) What happens if the app binds a context/drawable in multiple
113 (2) What happens if the app binds a context/drawable in multiple
119 (3) What happens if the app binds a context/drawable in 7 threads,
126 (4) What happens if the app binds a new drawable/readable with
133 (5) What requirements should be placed on the user managing contexts
/third_party/mesa3d/docs/_extra/specs/OLD/
DMESA_sprite_point.spec58 3. What about point smoothing?
70 4. What about sprite rotation?
77 5. What about POLYGON_MODE?
81 6. What about POLYGON_CULL?
/third_party/ltp/include/mk/
Dgeneric_leaf_target.inc29 # $(MAKE_DEPS) : What should we execute beforehand as a
36 # $(MAKE_TARGETS) : What to execute as direct dependencies of
62 # $(CLEAN_TARGETS) : What targets should be cleaned (must be
68 # $(INSTALL_MODE) : What mode should we using when calling
/third_party/typescript/.github/ISSUE_TEMPLATE/
DFeature_request.md56 What do you want to use this for?
57 What shortcomings exist with current approaches?
58 What workarounds are you using in the meantime?
DBug_report.md17 What search terms did you use when trying to find an existing bug report?
69 <!-- What happened, and why it was wrong -->
73 <!-- What you expected to happen instead, and why -->
/third_party/ffmpeg/tests/ref/fate/
Dsub-srt-rrn-remux116 What the shoebazzle
233 What's up, girlfriend?
248 Bleh? What's a bleh?
349 Uhh! What's the deal-e-o?
381 What?! What
659 What? Oh. Ok.
758 What being a real man
957 Ow! What the hell?!
1190 What?!
1213 What do you want?
[all …]
/third_party/python/Doc/whatsnew/
Dindex.rst4 What's New in Python
7 The "What's New in Python" series of essays takes tours through the most
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemorySSAUpdater.cpp1126 void MemorySSAUpdater::moveTo(MemoryUseOrDef *What, BasicBlock *BB, in moveTo() argument
1129 for (auto *U : What->users()) in moveTo()
1134 What->replaceAllUsesWith(What->getDefiningAccess()); in moveTo()
1137 MSSA->moveTo(What, BB, Where); in moveTo()
1140 if (auto *MD = dyn_cast<MemoryDef>(What)) in moveTo()
1143 insertUse(cast<MemoryUse>(What), /*RenameUses=*/true); in moveTo()
1151 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveBefore() argument
1152 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore()
1156 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveAfter() argument
1157 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter()
[all …]
DMemorySSA.cpp1627 void MemorySSA::insertIntoListsBefore(MemoryAccess *What, const BasicBlock *BB, in insertIntoListsBefore() argument
1631 Accesses->insert(AccessList::iterator(InsertPt), What); in insertIntoListsBefore()
1632 if (!isa<MemoryUse>(What)) { in insertIntoListsBefore()
1639 Defs->push_back(*What); in insertIntoListsBefore()
1641 Defs->insert(InsertPt->getDefsIterator(), *What); in insertIntoListsBefore()
1647 Defs->push_back(*What); in insertIntoListsBefore()
1649 Defs->insert(InsertPt->getDefsIterator(), *What); in insertIntoListsBefore()
1655 void MemorySSA::prepareForMoveTo(MemoryAccess *What, BasicBlock *BB) { in prepareForMoveTo() argument
1657 removeFromLists(What, false); in prepareForMoveTo()
1662 if (auto *MD = dyn_cast<MemoryDef>(What)) in prepareForMoveTo()
[all …]
/third_party/rust/crates/clap/examples/tutorial_derive/
D04_01_enum.md9 What mode to run the program in
28 <MODE> What mode to run the program in [possible values: fast, slow]
/third_party/rust/crates/clap/examples/tutorial_builder/
D04_01_enum.md9 What mode to run the program in
28 <MODE> What mode to run the program in [possible values: fast, slow]
/third_party/libwebsockets/
Dbug_report.md1 ** What version of lws **
8 ** What platform and arch? **
12 ** What parts of lws does it involve? **
/third_party/openssl/test/recipes/30-test_evp_data/
Devpmac_poly1305.txt47 # What happens if addition of s overflows modulo 2^128?
54 # What happens if data limb is all ones and there is carry from lower limb?
61 # What happens if final result from polynomial part is exactly 2^130-5?
68 # What happens if final result from polynomial part is exactly 2^130-6?
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Dmakevms.com96 $! P1 = What we are trying to make
98 $! P3 - P8 What it depends on
/third_party/skia/third_party/externals/icu/source/samples/msgfmt/
DREADME.TXT29 1. What is the date/time support in ICU?
30 2. What is the timezone support in ICU?
31 3. What kind of formatting and parsing support is available in ICU, i.e.
/third_party/icu/icu4c/source/samples/msgfmt/
DREADME.TXT28 1. What is the date/time support in ICU?
29 2. What is the timezone support in ICU?
30 3. What kind of formatting and parsing support is available in ICU, i.e.
/third_party/ffmpeg/doc/
Dmailing-list-faq.texi15 @section What is a mailing list?
24 @section What type of questions can I ask?
108 Messages that exceed the @ref{What is the message size limit?, message size limit}.
167 @anchor{What is top-posting?}
168 @section What is top-posting?
174 @anchor{What is the message size limit?}
175 @section What is the message size limit?
282 @section What are the rules and the proper etiquette?
309 Also see @ref{What is top-posting?}

12345678910>>...56