/external/clang/test/SemaCXX/ |
D | init-priority-attr.cpp | 3 class Two { class 8 Two( int ii, int jj ) { i = ii; j = jj; k = count++; }; in Two() function in Two 9 Two( void ) { i = 0; j = 0; k = count++; }; in Two() function in Two 15 extern Two foo; 16 extern Two goo; 17 extern Two coo[]; 18 extern Two koo[]; 20 Two foo __attribute__((init_priority(101))) ( 5, 6 ); 22 Two goo __attribute__((init_priority(2,3))) ( 5, 6 ); // expected-error {{'init_priority' attribute… 24 Two coo[2] __attribute__((init_priority(3))); // expected-error {{'init_priority' attribute requir… [all …]
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
D | allocate_shared_cxx03.pass.cpp | 47 struct Two struct 51 Two(int v, int) : value(v) {++count;} in Two() argument 52 Two(Two const & o) : value(o.value) {++count;} in Two() argument 53 ~Two() {--count;} in ~Two() argument 56 int Two::count = 0; 87 std::shared_ptr<Two> p = std::allocate_shared<Two>(Alloc(), i, bad); in test() 88 assert(Two::count == 1); in test() 91 assert(Two::count == 0); in test() 106 std::shared_ptr<Two> p = std::allocate_shared<Two>(test_allocator<Two>(54), i, bad); in main() 107 assert(test_allocator<Two>::alloc_count == 1); in main() [all …]
|
/external/llvm/test/CodeGen/PowerPC/ |
D | stwu-gta.ll | 5 %class.Two.0.5 = type { i32, i32, i32 } 7 @foo = external global %class.Two.0.5, align 4 11 …store i32 5, i32* getelementptr inbounds (%class.Two.0.5, %class.Two.0.5* @foo, i32 0, i32 0), ali… 12 …store i32 6, i32* getelementptr inbounds (%class.Two.0.5, %class.Two.0.5* @foo, i32 0, i32 1), ali…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | stwu-gta.ll | 5 %class.Two.0.5 = type { i32, i32, i32 } 7 @foo = external global %class.Two.0.5, align 4 11 …store i32 5, i32* getelementptr inbounds (%class.Two.0.5, %class.Two.0.5* @foo, i32 0, i32 0), ali… 12 …store i32 6, i32* getelementptr inbounds (%class.Two.0.5, %class.Two.0.5* @foo, i32 0, i32 1), ali…
|
/external/clang/test/SemaObjC/ |
D | objc-cstyle-args-in-methods.m | 16 [foo test:@"One", @"Two"]; 17 [foo bad:@"One", @"Two"]; // expected-error {{too few arguments to method call}} 18 [foo bad:@"One", @"Two", 3.14]; 19 [foo bad:@"One", @"Two", 3.14, @"Two"]; // expected-error {{too many arguments to method call}}
|
/external/turbine/javatests/com/google/turbine/lower/testdata/ |
D | wild.test | 6 === test/Two.java === 9 public class Two<T, U> {} 15 Two<?, ?> a1(Two<?, ?> x) { return null; }
|
D | B8148131.test | 11 class One implements Two.ThreeInner { 15 === Two.java === 18 class Two extends Three {}
|
D | constpack.test | 8 === a/Two.java === 11 public class Two implements One {
|
D | hierarchy.test | 8 === pkg/Two.java === 10 public class Two extends One {
|
/external/u-boot/arch/arm/cpu/armv8/fsl-layerscape/doc/ |
D | README.soc | 45 - Two DUARTs 92 - Two 64-bit DDR4 SDRAM memory controllers with ECC and interleaving support 112 - Two serial ATA (SATA 3.0) controllers 113 - Two high-speed USB 3.0 controllers with integrated PHY 118 - Two DUARTs 142 Two Serdes PLLs supported for usage by any SerDes data lane 152 - Two enhanced secure digital host controllers 153 - Two I2C controllers 155 - Two general purpose IOs (GPIO) 156 - Two FlexTimers [all …]
|
/external/clang/test/Modules/Inputs/wildcard-submodule-exports/ |
D | module.map | 3 module Two { header "A_two.h" } 8 module Two { header "B_two.h" } 16 module Two {
|
D | C_two.h | 1 @import A.Two; 2 @import B.Two;
|
/external/autotest/client/site_tests/touch_ScrollDirection/ |
D | README | 6 <DEVICE NAME>_touchpad_Touch ID_scroll-down - Two finger scroll on touchpad in downward direction. 7 <DEVICE NAME>_touchpad_Touch ID_scroll-right - Two finger scroll on touchpad in right direction. 8 <DEVICE NAME>_touchpad_Touch ID_scroll-left - Two finger scroll on touchpad in left direction. 9 <DEVICE NAME>_touchpad_Touch ID_scroll-up - Two finger scroll on touchpad in upward direction.
|
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/ |
D | Symmetry.h | 42 constexpr static int Two = Two_; member 51 constexpr static int Two = Two_; member 60 constexpr static int Two = Two_; member 69 constexpr static int Two = Two_; member 163 constexpr static std::size_t Two = static_cast<std::size_t>(Two_); 167 constexpr static std::size_t maxOneTwoPlusOne = ((One > Two) ? One : Two) + 1;
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | DJBTest.cpp | 19 StringLiteral Two; in TEST() member 54 SCOPED_TRACE("Comparing '" + T.One + "' and '" + T.Two + "'"); in TEST() 55 EXPECT_EQ(caseFoldingDjbHash(T.One), caseFoldingDjbHash(T.Two)); in TEST()
|
/external/clang/test/SemaTemplate/ |
D | alias-church-numerals.cpp | 13 template<template<typename> class F, typename X> using Two = Succ<One, F, X>; typedef 25 template<template<typename> class F, typename X> using Four = Add<Two, Two, F, X>;
|
/external/swiftshader/third_party/LLVM/test/Analysis/BasicAA/ |
D | phi-and-select.ll | 6 ; Two PHIs in the same block. 25 ; Two selects with the same condition. 35 ; Two PHIs with disjoint sets of inputs. 64 ; Two selects with disjoint sets of arms.
|
/external/llvm/test/Analysis/BasicAA/ |
D | phi-and-select.ll | 15 ; Two PHIs in the same block. 34 ; Two selects with the same condition. 44 ; Two PHIs with disjoint sets of inputs. 73 ; Two selects with disjoint sets of arms.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/BasicAA/ |
D | phi-and-select.ll | 15 ; Two PHIs in the same block. 34 ; Two selects with the same condition. 44 ; Two PHIs with disjoint sets of inputs. 73 ; Two selects with disjoint sets of arms.
|
/external/u-boot/board/freescale/t1040qds/ |
D | README | 31 - Two RGMII interfaces or one RGMII and one MII interfaces 34 - Two SATA controllers supporting 1.5 and 3.0 Gb/s operation 39 - Two USB 2.0 controllers with integrated PHY 49 - Two 8-channel DMA engines 70 - Two on-board RGMII 10/100/1G ethernet ports. 81 — Two type A ports with 5V@1.5A per port. 90 - Two Serial ports
|
/external/markdown/tests/misc/ |
D | em_strong.txt | 5 Two asterisks: ** 9 Two underscores __
|
/external/swiftshader/third_party/LLVM/examples/Fibonacci/ |
D | fibonacci.cpp | 52 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); in CreateFibFunction() local 64 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); in CreateFibFunction() 76 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction()
|
/external/llvm/examples/Fibonacci/ |
D | fibonacci.cpp | 65 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); in CreateFibFunction() local 77 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); in CreateFibFunction() 89 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Fibonacci/ |
D | fibonacci.cpp | 64 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); in CreateFibFunction() local 76 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); in CreateFibFunction() 88 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); in CreateFibFunction()
|
/external/u-boot/board/freescale/bsc9132qds/ |
D | README | 17 - Two StarCore SC3850 DSP subsystems, each with a 512-Kbyte private L2 22 - Two DDR3/3L memory interfaces with 32-bit data width (40 bits including 25 - Two DMA controllers 31 - Two Common Public Radio Interface (CPRI) controller lanes 40 - Two DUART, two eSPI, and two I2C controllers 52 - Two 32-bit quad timers
|