/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Casting.h | 53 template <typename To, typename From, typename Enabler = void> 56 return To::classof(&Val); 61 template <typename To, typename From> 63 To, From, typename std::enable_if<std::is_base_of<To, From>::value>::type> { 67 template <typename To, typename From> struct isa_impl_cl { 69 return isa_impl<To, From>::doit(Val); 73 template <typename To, typename From> struct isa_impl_cl<To, const From> { 75 return isa_impl<To, From>::doit(Val); 79 template <typename To, typename From> struct isa_impl_cl<To, From*> { 82 return isa_impl<To, From>::doit(*Val); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Casting.h | 55 template <typename To, typename From, typename Enabler = void> 58 return To::classof(&Val); 63 template <typename To, typename From> 65 To, From, typename std::enable_if<std::is_base_of<To, From>::value>::type> { 69 template <typename To, typename From> struct isa_impl_cl { 71 return isa_impl<To, From>::doit(Val); 75 template <typename To, typename From> struct isa_impl_cl<To, const From> { 77 return isa_impl<To, From>::doit(Val); 81 template <typename To, typename From> 82 struct isa_impl_cl<To, const std::unique_ptr<From>> { [all …]
|
D | GenericDomTreeConstruction.h | 650 const NodePtr From, const NodePtr To) { in InsertEdge() 653 assert(To && "Cannot be a nullptr"); in InsertEdge() 655 << BlockNamePrinter(To) << "\n"); in InsertEdge() 673 const TreeNodePtr ToTN = DT.getNode(To); in InsertEdge() 675 InsertUnreachable(DT, BUI, FromTN, To); in InsertEdge() 684 const TreeNodePtr To) { in UpdateRootsBeforeInsertion() 688 if (!DT.isVirtualRoot(To->getIDom())) return false; in UpdateRootsBeforeInsertion() 690 auto RIt = llvm::find(DT.Roots, To->getBlock()); in UpdateRootsBeforeInsertion() 694 LLVM_DEBUG(dbgs() << "\t\tAfter the insertion, " << BlockNamePrinter(To) in UpdateRootsBeforeInsertion() 742 const TreeNodePtr From, const TreeNodePtr To) { in InsertReachable() [all …]
|
/third_party/openssl/demos/cms/ |
D | comp.txt | 3 Some Text To be Compressed 4 Some Text To be Compressed 5 Some Text To be Compressed 6 Some Text To be Compressed 7 Some Text To be Compressed 8 Some Text To be Compressed 9 Some Text To be Compressed 10 Some Text To be Compressed 11 Some Text To be Compressed 12 Some Text To be Compressed [all …]
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | casts.h | 60 template<typename To, typename From> 61 inline To implicit_cast(From const &f) { in implicit_cast() 83 template<typename To, typename From> // use like this: down_cast<T*>(foo); 84 inline To down_cast(From* f) { // so we only accept pointers in down_cast() 90 implicit_cast<From*, To>(0); in down_cast() 94 assert(f == nullptr || dynamic_cast<To>(f) != nullptr); // RTTI: debug mode only! in down_cast() 96 return static_cast<To>(f); in down_cast() 99 template<typename To, typename From> // use like this: down_cast<T&>(foo); 100 inline To down_cast(From& f) { in down_cast() 101 typedef typename std::remove_reference<To>::type* ToAsPointer; in down_cast() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | DomTreeUpdater.cpp | 28 const auto *To = Update.getTo(); in isUpdateValid() local 36 successors(From), [To](const BasicBlock *B) { return B == To; }); in isUpdateValid() 317 void DomTreeUpdater::insertEdge(BasicBlock *From, BasicBlock *To) { in insertEdge() argument 320 assert(isUpdateValid({DominatorTree::Insert, From, To}) && in insertEdge() 328 if (From == To) in insertEdge() 333 DT->insertEdge(From, To); in insertEdge() 335 PDT->insertEdge(From, To); in insertEdge() 339 PendUpdates.push_back({DominatorTree::Insert, From, To}); in insertEdge() 342 void DomTreeUpdater::insertEdgeRelaxed(BasicBlock *From, BasicBlock *To) { in insertEdgeRelaxed() argument 343 if (From == To) in insertEdgeRelaxed() [all …]
|
D | CFLGraph.h | 126 void addEdge(Node From, Node To, int64_t Offset = 0) { 129 auto *ToInfo = getNode(To); 132 FromInfo->Edges.push_back(Edge{To, Offset}); 219 void addAssignEdge(Value *From, Value *To, int64_t Offset = 0) { 220 assert(From != nullptr && To != nullptr); 221 if (!From->getType()->isPointerTy() || !To->getType()->isPointerTy()) 224 if (To != From) { 225 addNode(To); 226 Graph.addEdge(InstantiatedValue{From, 0}, InstantiatedValue{To, 0}, 231 void addDerefEdge(Value *From, Value *To, bool IsRead) { in addDerefEdge() argument [all …]
|
D | AliasAnalysisSummary.h | 151 InterfaceValue From, To; member 156 return LHS.From == RHS.From && LHS.To == RHS.To && LHS.Offset == RHS.Offset; 166 if (LHS.To < RHS.To) 168 if (LHS.To > RHS.To) 229 InstantiatedValue From, To; member
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
D | datapiece.cc | 58 template <typename To, typename From> 59 StatusOr<To> ValidateNumberConversion(To after, From before) { in ValidateNumberConversion() 61 MathUtil::Sign<From>(before) == MathUtil::Sign<To>(after)) { in ValidateNumberConversion() 75 template <typename To, typename From> 76 StatusOr<To> NumberConvertAndCheck(From before) { in NumberConvertAndCheck() 77 if (std::is_same<From, To>::value) return before; in NumberConvertAndCheck() 79 To after = static_cast<To>(before); in NumberConvertAndCheck() 85 template <typename To, typename From> 86 StatusOr<To> FloatingPointToIntConvertAndCheck(From before) { in FloatingPointToIntConvertAndCheck() 87 if (std::is_same<From, To>::value) return before; in FloatingPointToIntConvertAndCheck() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | bit.h | 25 template <typename To, typename From 26 , typename = typename std::enable_if<sizeof(To) == sizeof(From)>::type 29 , typename = typename std::is_trivially_constructible<To>::type 31 , typename = typename std::enable_if<__is_trivially_constructible(To)>::type 37 , typename = typename std::enable_if<std::is_trivially_copyable<To>::value>::type 40 , typename = typename std::enable_if<__is_trivially_copyable(To)>::type 50 inline To bit_cast(const From &from) noexcept { in bit_cast() 51 To to; in bit_cast() 52 std::memcpy(&to, &from, sizeof(To)); in bit_cast()
|
/third_party/typescript/tests/baselines/reference/ |
D | intersectionsAndOptionalProperties.symbols | 27 interface To { 28 >To : Symbol(To, Decl(intersectionsAndOptionalProperties.ts, 5, 6)) 31 >field : Symbol(To.field, Decl(intersectionsAndOptionalProperties.ts, 9, 14)) 34 >anotherField : Symbol(To.anotherField, Decl(intersectionsAndOptionalProperties.ts, 10, 19)) 37 type From = { field: null } & Omit<To, 'field'>; 41 >To : Symbol(To, Decl(intersectionsAndOptionalProperties.ts, 5, 6)) 48 let x: To; 50 >To : Symbol(To, Decl(intersectionsAndOptionalProperties.ts, 5, 6)) 57 >x.field : Symbol(To.field, Decl(intersectionsAndOptionalProperties.ts, 9, 14)) 59 >field : Symbol(To.field, Decl(intersectionsAndOptionalProperties.ts, 9, 14))
|
D | intersectionsAndOptionalProperties.types | 31 interface To { 39 type From = { field: null } & Omit<To, 'field'>; 40 >From : { field: null; } & Omit<To, "field"> 48 let x: To; 49 >x : To 53 >x : To 59 >x : To
|
D | functionOnlyHasThrow.types | 5 throw new Error("To be implemented"); 6 >new Error("To be implemented") : Error 8 >"To be implemented" : "To be implemented"
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/ |
D | type.h | 47 template<typename To, typename From> 48 inline To implicit_cast(From const &f) { in implicit_cast() 52 template<typename To, typename From> // use like this: down_cast<T*>(foo); 53 inline To down_cast(From* f) { // so we only accept pointers in down_cast() 63 implicit_cast<From*, To>(0); in down_cast() 72 assert(f == NULL || dynamic_cast<To>(f) != NULL); in down_cast() 74 return static_cast<To>(f); in down_cast()
|
/third_party/jerryscript/docs/ |
D | 00.GETTING-STARTED.md | 21 To make our scripts run correctly, several shell utilities should be available on the system: 30 **To build debug version for Linux** 36 **To build debug version for Linux without LTO (Link Time Optimization)** 42 **To enable more verbose outputs for debugging** 123 **To build with libfuzzer support** 132 **To get a list of all the available buildoptions for Linux** 146 **To run build option tests** 152 **To run unittests** 158 **To run jerry-tests** 164 **To run jerry-test-suite** [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
D | X87.cpp | 154 test.set##MemorySize##To(T1, OldValue1); \ in TEST_F() 155 test.set##MemorySize##To(N1, NewValue1); \ in TEST_F() 156 test.set##MemorySize##To(T2, OldValue2); \ in TEST_F() 157 test.set##MemorySize##To(N2, NewValue2); \ in TEST_F() 158 test.set##MemorySize##To(T3, OldValue3); \ in TEST_F() 159 test.set##MemorySize##To(N3, NewValue3); \ in TEST_F() 160 test.set##MemorySize##To(T4, OldValue4); \ in TEST_F() 161 test.set##MemorySize##To(N4, NewValue4); \ in TEST_F() 162 test.set##MemorySize##To(T5, OldValue5); \ in TEST_F() 163 test.set##MemorySize##To(N5, NewValue5); \ in TEST_F() [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/Documentation/ |
D | HOWTO_RunTests | 32 and the framework merely calls these mechanisms. To build functional and 34 area. To run these tests, the framework calls the run.sh file for each 44 To build and run the tests, you should be in the main posix test suite 53 To disable known failures on Linux do make filter-known-fails. 57 To run conformance tests for a specific directory, just cd to the directory 63 To just build conformance tests, run: 66 To just run conformance tests, run: 71 To run only functional tests, run: 74 To run only stress tests, run: 77 To make only functional tests, run: [all …]
|
/third_party/node/deps/v8/src/objects/ |
D | value-serializer.cc | 349 if (ReserveRawBytes(bytelength).To(&dest)) { in WriteBigIntContents() 356 if (ReserveRawBytes(length).To(&dest) && length > 0) { in WriteRawBytes() 366 if (!ExpandBuffer(new_size).To(&ok)) { in ReserveRawBytes() 680 !WriteJSObjectPropertiesSlow(object, keys).To(&properties_written)) { in WriteJSObjectSlow() 778 if (!WriteJSObjectPropertiesSlow(array, keys).To(&properties_written)) { in WriteJSArray() 792 !WriteJSObjectPropertiesSlow(array, keys).To(&properties_written)) { in WriteJSArray() 1062 if (transfer_id.To(&id)) { in WriteWasmModule() 1205 if (!ReadVarint<uint32_t>().To(&version_) || version_ > kLatestVersion) { in ReadHeader() 1324 if (!ReadVarint<UnsignedT>().To(&unsigned_value)) return Nothing<T>(); in ReadZigZag() 1355 return ReadVarint<uint32_t>().To(value); in ReadUint32() [all …]
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-meta.hh | 135 #define hb_is_convertible(From,To) std::is_convertible<From, To>::value argument 137 template <typename From, typename To> 139 hb_is_same (hb_decay<From>, hb_decay<To>) && 140 (!hb_is_const (From) || hb_is_const (To)) && 141 (!hb_is_reference (To) || hb_is_const (To) || hb_is_reference (To)) 143 #define hb_is_cr_convertible(From,To) hb_is_cr_convertible<From, To>::value argument
|
/third_party/skia/third_party/externals/angle2/doc/ |
D | BuildingAngleForChromiumDevelopment.md | 12 * To setup run these commands (note similarity to [DevSetup](DevSetup.md)): 16 * To sync all standalone dependencies run: 24 * To generate ANGLE standalone build files run: 31 * To build: 39 * To run a sample application: `./out/Debug/hello_triangle` 40 * To go back to the Chromium-managed version, remove `third_party/angle/.gclient`. 44 …s [DEPS](https://chromium.googlesource.com/chromium/src/+/main/DEPS) file. To do this do the follo…
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
D | span.h | 106 template <typename From, typename To> 109 static std::true_type testval(To); 116 template <typename From, typename To> 117 struct IsConvertible : IsConvertibleHelper<From, To>::type {}; 121 template <typename From, typename To> 123 typename std::enable_if<IsConvertible<From, To>::value>::type;
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | en_CA.txt | 49 fwidth{"To Full Width"} 50 hwidth{"To Half Width"} 51 lower{"To Lower Case"} 52 title{"To Title Case"} 53 upper{"To Upper Case"}
|
/third_party/lame/debian/ |
D | control | 21 To read from stdin, use "-" for <infile>. To write to 34 To read from stdin, use "-" for <infile>. To write to 47 To read from stdin, use "-" for <infile>. To write to
|
/third_party/python/Lib/test/test_email/data/ |
D | msg_02.txt | 4 To: ppp@zzz.org 18 To subscribe or unsubscribe via the World Wide Web, visit 51 To: ppp@zzz.org 66 To: ppp@zzz.org 80 To: ppp@zzz.org 95 To: ppp@zzz.org 110 To: ppp@zzz.org
|
/third_party/libphonenumber/cpp/src/phonenumbers/base/ |
D | template_util.h | 64 template <typename To> 65 static YesType Test(To); 67 template <typename To> 90 template <typename From, typename To> 93 sizeof(internal::ConvertHelper::Test<To>(
|