/third_party/openmax/ |
D | README.md | 1 # OpenMAX-IL-Registry 3 The OpenMAX-IL-Registry repository contains the OpenMAX IL API and Extension 13 In the past, the OpenMAX IL registry was maintained in a public Subversion 23 * api/ - OpenMAX IL header files 24 * extensions/ - OpenMAX IL extension specifications, grouped into 26 * specs/ - OpenMAX IL specification documents.
|
D | README.OpenSource | 3 "Name": "Khronos Group - OpenMAX IL", 8 "Upstream URL": "https://github.com/KhronosGroup/OpenMAX-IL-Registry/tree/main/api/1.1.2", 9 …"Description": "The OpenMAX IL (Integration Layer) API defines a standardized media component inte…
|
/third_party/libphonenumber/resources/geocoding/en/ |
D | 1.txt | 1725 1217222|Quincy, IL 1726 1217223|Quincy, IL 1727 1217224|Quincy, IL 1728 1217226|Assumption, IL 1729 1217228|Quincy, IL 1730 1217229|Raymond, IL 1731 1217234|Mattoon, IL 1732 1217235|Mattoon, IL 1733 1217239|Champaign, IL 1734 1217241|Springfield, IL [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | SmallPtrSet.h | 380 void insert(std::initializer_list<PtrType> IL) { 381 insert(IL.begin(), IL.end()); 435 SmallPtrSet(std::initializer_list<PtrType> IL) 437 this->insert(IL.begin(), IL.end()); 455 operator=(std::initializer_list<PtrType> IL) { 457 this->insert(IL.begin(), IL.end());
|
D | SmallVector.h | 414 void append(std::initializer_list<T> IL) { in append() argument 415 append(IL.begin(), IL.end()); in append() 426 void assign(std::initializer_list<T> IL) { in assign() argument 428 append(IL); in assign() 631 void insert(iterator I, std::initializer_list<T> IL) { in insert() argument 632 insert(I, IL.begin(), IL.end()); in insert() 867 SmallVector(std::initializer_list<T> IL) : SmallVectorImpl<T>(N) { 868 this->assign(IL); 901 const SmallVector &operator=(std::initializer_list<T> IL) { 902 this->assign(IL);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SmallPtrSet.h | 392 void insert(std::initializer_list<PtrType> IL) { 393 insert(IL.begin(), IL.end()); 467 SmallPtrSet(std::initializer_list<PtrType> IL) 469 this->insert(IL.begin(), IL.end()); 487 operator=(std::initializer_list<PtrType> IL) { 489 this->insert(IL.begin(), IL.end());
|
D | TinyPtrVector.h | 114 TinyPtrVector(std::initializer_list<EltTy> IL) in TinyPtrVector() argument 115 : Val(IL.size() == 0 in TinyPtrVector() 117 : IL.size() == 1 ? PtrUnion(*IL.begin()) in TinyPtrVector() 118 : PtrUnion(new VecTy(IL.begin(), IL.end()))) {} in TinyPtrVector()
|
D | SmallVector.h | 405 void append(std::initializer_list<T> IL) { in append() argument 406 append(IL.begin(), IL.end()); in append() 429 void assign(std::initializer_list<T> IL) { in assign() argument 431 append(IL); in assign() 637 void insert(iterator I, std::initializer_list<T> IL) { in insert() argument 638 insert(I, IL.begin(), IL.end()); in insert() 865 SmallVector(std::initializer_list<T> IL) : SmallVectorImpl<T>(N) { 866 this->assign(IL); 899 const SmallVector &operator=(std::initializer_list<T> IL) { 900 this->assign(IL);
|
/third_party/boost/libs/geometry/test/geometries/ |
D | multi_point.cpp | 97 void test_custom_multi_point(std::initializer_list<P> IL) in test_custom_multi_point() argument 99 bg::model::multi_point<P> mp1(IL); in test_custom_multi_point() 109 std::initializer_list<P> IL = {P(0, 0), P(1, 2), P(2, 0)}; in test_custom() local 110 test_custom_multi_point<P>(IL); in test_custom()
|
D | linestring.cpp | 98 void test_custom_linestring(std::initializer_list<P> IL) in test_custom_linestring() argument 100 bg::model::linestring<P> l1(IL); in test_custom_linestring() 110 std::initializer_list<P> IL = {P(1, 2), P(2, 3), P(3, 4)}; in test_custom() local 111 test_custom_linestring<P>(IL); in test_custom()
|
D | ring.cpp | 117 void test_custom_ring(bg::model::ring<P> IL) in test_custom_ring() argument 119 bg::model::ring<P> r1(IL); in test_custom_ring() 129 std::initializer_list<P> IL = {P(3, 3), P(3, 0), P(0, 0), P(0, 3), P(3, 3)}; in test_custom() local 130 test_custom_ring<P>(IL); in test_custom()
|
D | polygon.cpp | 112 void test_custom_polygon(bg::model::ring<P> IL) in test_custom_polygon() argument 115 std::initializer_list<bg::model::ring<P> > RIL = {IL}; in test_custom_polygon() 126 std::initializer_list<P> IL = {P(3, 3), P(3, 0), P(0, 0), P(0, 3), P(3, 3)}; in test_custom() local 127 bg::model::ring<P> r1(IL); in test_custom()
|
D | multi_polygon.cpp | 123 void test_custom_multi_polygon(bg::model::polygon<P> IL) in test_custom_multi_polygon() argument 127 std::initializer_list<PL> PIL = {IL}; in test_custom_multi_polygon() 138 std::initializer_list<P> IL = {P(3, 3), P(3, 0), P(0, 0), P(0, 3), P(3, 3)}; in test_custom() local 139 bg::model::ring<P> r1(IL); in test_custom()
|
D | multi_linestring.cpp | 114 void test_custom_multi_linestring(bg::model::linestring<P> IL) in test_custom_multi_linestring() argument 118 std::initializer_list<L> LIL = {IL}; in test_custom_multi_linestring()
|
/third_party/boost/boost/gil/ |
D | algorithm.hpp | 188 template <typename IL, typename O> // IL Models ConstPixelLocatorConcept, O Models PixelIteratorCo… 189 struct copier_n<iterator_from_2d<IL>,O> { 190 using diff_t = typename std::iterator_traits<iterator_from_2d<IL>>::difference_type; 191 BOOST_FORCEINLINE void operator()(iterator_from_2d<IL> src, diff_t n, O dst) const { in operator ()() 192 gil_function_requires<PixelLocatorConcept<IL>>(); in operator ()() 224 template <typename IL, typename OL> 225 struct copier_n<iterator_from_2d<IL>,iterator_from_2d<OL>> { 226 using diff_t = typename iterator_from_2d<IL>::difference_type; 227 …BOOST_FORCEINLINE void operator()(iterator_from_2d<IL> src, diff_t n, iterator_from_2d<OL> dst) co… in operator ()() 228 gil_function_requires<PixelLocatorConcept<IL>>(); in operator ()() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.cpp | 63 IL = new IntrinsicLowering(getDataLayout()); in Interpreter() 67 delete IL; in ~Interpreter()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Format.h | 219 FormattedBytes(ArrayRef<uint8_t> B, uint32_t IL, Optional<uint64_t> O, 221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
|
/third_party/flutter/flutter/packages/flutter_localizations/test/ |
D | override_test.dart | 274 const Locale('he', 'IL'), 275 const Locale('yi', 'IL'), 290 await tester.binding.setLocale('iw', 'IL'); 295 await tester.binding.setLocale('ji', 'IL');
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Format.h | 228 FormattedBytes(ArrayRef<uint8_t> B, uint32_t IL, Optional<uint64_t> O, 230 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
|
/third_party/openssl/test/certs/ |
D | ca-key2.pem | 5 H0/7DehJ6ugIabapyf3mFV/RLi0w8FeeSqbW+IL/SULOr9NWhB8yfShpStsyqUvQ
|
/third_party/flutter/skia/third_party/externals/icu/source/data/region/ |
D | haw.txt | 15 IL{"ʻIseraʻela"}
|
/third_party/icu/icu4c/source/data/region/ |
D | haw.txt | 16 IL{"ʻIseraʻela"}
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | haw.txt | 16 IL{"ʻIseraʻela"}
|
/third_party/node/test/fixtures/keys/ |
D | fake-startcom-root.cnf | 37 C = IL
|
/third_party/libphonenumber/ |
D | release_notes.txt | 69 - Updated phone metadata for region code(s): EH, IL, KE, LA, MA, OM, SG 295 BA, BW, CG, CO, EH, FO, HN, IL, KE, MA, NZ, SN, TJ, UY 304 CL, DE, FR, GQ, IL, IR, KG, KW, MU, NG, PW, SN, TZ 331 EH, IL, JO, MA, NG, PA, PG, PY, UY 339 - Updated phone metadata for region code(s): CO, GB, IL, SG 417 AG, AI, AS, BB, BD, BM, BS, BW, CA, CL, DM, DO, GB, GD, GU, IL, IR, JM, JO, 459 AD, BE, BQ, BW, CA, CI, CM, CR, EC, EE, EG, FM, FO, GL, GN, IL, KI, LK, LT, 511 AR, DO, DZ, FR, GA, GE, GI, IL, KW, LB, MA, RO, SG, ZA 573 - Updated phone metadata for region code(s): EH, GE, GR, HU, IL, IR, MA, US 582 - Updated short number metadata for region code(s): BR, IL [all …]
|