/external/libxcam/xcore/ |
D | xcam_utils.cpp | 91 PointFloat3 world; in bowl_view_image_to_world() local 105 world.z = config.wall_height - img_pos.y * z_step; // TODO world.z in bowl_view_image_to_world() 107 float r2 = 1 - (world.z - config.center_z) * (world.z - config.center_z) / (c * c); in bowl_view_image_to_world() 110 world.x = 0.0f; in bowl_view_image_to_world() 111 world.y = -sqrt(r2 * b * b); in bowl_view_image_to_world() 113 world.x = 0.0f; in bowl_view_image_to_world() 114 world.y = sqrt(r2 * b * b); in bowl_view_image_to_world() 116 world.x = sqrt(r2 * a * a * b * b / (b * b + a * a * tan(angle) * tan(angle))); in bowl_view_image_to_world() 117 world.y = -world.x * tan(angle); in bowl_view_image_to_world() 119 world.x = -sqrt(r2 * a * a * b * b / (b * b + a * a * tan(angle) * tan(angle))); in bowl_view_image_to_world() [all …]
|
/external/markdown/tests/safe_mode/ |
D | unsafe_urls.txt | 3 [link](javascript:alert%28'Hello%20world!'%29) 4 [link](vbscript:msgbox%28%22Hello%20world!%22%29) 5 [link](livescript:alert%28'Hello%20world!'%29) 7 [link](jAvAsCrIpT:alert%28'Hello%20world!'%29) 8 [link](ja vas cr ipt:alert%28'Hello%20world!'%29) 9 [link](ja vas cr ipt:alert%28'Hello%20world!'%29) 10 [link](ja vas cr ipt:alert%28'Hello%20world!'%29) 11 [link](ja%09 %0Avas cr
ipt:alert%28'Hello%20world!'%29) 12 [link](ja%20vas%20cr%20ipt:alert%28'Hello%20world!'%29) 13 [link](live%20script:alert%28'Hello%20world!'%29)
|
D | script_tags.txt | 4 alert("Hello world!") 11 alert("Hello world!") 18 alert("Hello world!") 24 alert("Hello world!") 31 alert("Hello world!")
|
/external/dtc/tests/ |
D | extra-terminating-null.dts | 4 extranull0 = "hello world"; 5 extranull1,1 = "hello world\0"; 6 extranull1,2 = "hello world", ""; 7 extranull2,1 = "hello world\0\0"; 8 extranull2,2 = "hello world", "", ""; 9 extranull2,3 = "hello world\0", ""; 10 extranull2,4 = "hello world", "\0";
|
/external/grpc-grpc-java/examples/ |
D | README.md | 18 This creates the scripts `hello-world-server`, `hello-world-client`, 19 `hello-world-tls-server`, `hello-world-tls-client`, 24 For example, to try the hello world example first run: 27 $ ./build/install/examples/bin/hello-world-server 33 $ ./build/install/examples/bin/hello-world-client 38 Running the hello world with TLS is the same as the normal hello world, but takes additional args: 40 **hello-world-tls-server**: 47 **hello-world-tls-client**: 56 …ipt to generate self-signed certificates for grpc-java including the hello world with TLS examples: 93 #### Hello world example with TLS (no mutual auth): [all …]
|
D | BUILD.bazel | 84 name = "hello-world-client", 93 name = "hello-world-server", 102 name = "hello-world-alts-client", 113 name = "hello-world-alts-server", 160 name = "hello-world-tls-client", 170 name = "hello-world-tls-server",
|
D | build.gradle | 93 applicationName = 'hello-world-server' 100 applicationName = 'hello-world-client' 107 applicationName = 'hello-world-alts-server' 114 applicationName = 'hello-world-alts-client' 121 applicationName = 'hello-world-tls-server' 128 applicationName = 'hello-world-tls-client' 135 applicationName = 'compressing-hello-world-client'
|
/external/llvm/test/MC/ELF/ |
D | comdat-reloc.s | 7 call world 10 .section .text.world,"axG",@progbits,world,comdat 11 .type world,@function 12 world: label
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/ |
D | comdat-reloc.s | 7 call world 10 .section .text.world,"axG",@progbits,world,comdat 11 .type world,@function 12 world: label
|
/external/e2fsprogs/lib/ss/ |
D | test_script_expected | 4 Hello, world! 7 Hello, world! 10 Hello, world! 17 Hello, world! 21 Hello, world!
|
/external/elfutils/tests/ |
D | testfile-dwarf-45.source | 49 # = world.c = 70 n = "world"; 75 $ gcc -gdwarf-4 -gno-as-loc-support -gno-variable-location-views -O2 -c world.c 77 $ gcc -o testfile-dwarf-4 hello.o world.o 79 $ gcc -gdwarf-5 -gno-as-loc-support -gno-variable-location-views -O2 -c world.c 81 $ gcc -o testfile-dwarf-5 hello.o world.o 83 … -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-world4.o -c world.c 87 … -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-world5.o -c world.c
|
D | run-all-dwarf-ranges.sh | 29 testfiles testfile-ranges-hello.dwo testfile-ranges-world.dwo 48 die: world.c (11) 100 die: world.c (11)
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | LevelSystem.java | 123 TiledWorld world = new TiledWorld(byteStream); in loadLevel() local 148 mTileWidth, mTileHeight, world, tileIndex); in loadLevel() 156 mWidthInTiles = world.getWidth(); in loadLevel() 157 mHeightInTiles = world.getHeight(); in loadLevel() 162 collision.initialize(world, mTileWidth, mTileHeight); in loadLevel() 165 mSpawnLocations = world; in loadLevel() 170 hotSpots.setWorld(world); in loadLevel()
|
D | LevelBuilder.java | 120 int width, int height, int tileWidth, int tileHeight, TiledWorld world, in addTileMapLayer() argument 158 bg.setWorld(world); in addTileMapLayer() 166 if (world.getWidth() > world.getHeight()) { in addTileMapLayer()
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | 2009-03-25-TestBug.ll | 7 @world = internal constant [7 x i8] c"world\0A\00" 14 br i1 %tmp178, label %hello, label %world 20 world: 21 %w = tail call i32 (i8*, ...)* @printf( i8* getelementptr ([7 x i8]* @world, i32 0, i32 0))
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-03-25-TestBug.ll | 8 @world = internal constant [7 x i8] c"world\0A\00" 15 br i1 %tmp178, label %hello, label %world 21 world: 22 …%w = tail call i32 (i8*, ...) @printf( i8* getelementptr ([7 x i8], [7 x i8]* @world, i32 0, i32 0…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | 2009-03-25-TestBug.ll | 8 @world = internal constant [7 x i8] c"world\0A\00" 15 br i1 %tmp178, label %hello, label %world 21 world: 22 …%w = tail call i32 (i8*, ...) @printf( i8* getelementptr ([7 x i8], [7 x i8]* @world, i32 0, i32 0…
|
/external/libxml2/result/c14n/with-comments/ |
D | example-5 | 2 Hello, world! 4 <!-- Let world.txt contain "world" (excluding the quotes) -->
|
/external/grpc-grpc/test/cpp/util/ |
D | byte_buffer_test.cc | 91 grpc_slice world = grpc_slice_from_copied_string(kContent2); in TEST_F() local 94 slices.push_back(Slice(world, Slice::STEAL_REF)); in TEST_F() 99 EXPECT_TRUE(SliceEqual(slices[1], world)); in TEST_F() 104 grpc_slice world = grpc_slice_from_copied_string(kContent2); in TEST_F() local 107 slices.push_back(Slice(world, Slice::STEAL_REF)); in TEST_F()
|
/external/grpc-grpc-java/examples/example-kotlin/ |
D | README.md | 18 This creates the scripts `hello-world-server`, `hello-world-client`, 23 For example, to try the hello world example first run: 26 $ ./build/install/examples/bin/hello-world-server 32 $ ./build/install/examples/bin/hello-world-client
|
/external/perfetto/src/base/ |
D | unix_socket_unittest.cc | 562 char world[] = "world"; in TEST_F() local 566 iov[1].iov_base = &world[0]; in TEST_F() 567 iov[1].iov_len = base::ArraySize(world); in TEST_F() 576 EXPECT_EQ(hdr.msg_iov[1].iov_base, &world[0]); in TEST_F() 584 EXPECT_STREQ(reinterpret_cast<char*>(hdr.msg_iov[0].iov_base), world); in TEST_F() 585 EXPECT_EQ(hdr.msg_iov[0].iov_len, base::ArraySize(world)); in TEST_F() 587 UnixSocketRaw::ShiftMsgHdr(base::ArraySize(world), &hdr); in TEST_F() 596 char world[] = "world"; in TEST_F() local 600 iov[1].iov_base = &world[0]; in TEST_F() 601 iov[1].iov_len = base::ArraySize(world); in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/FileCheck/ |
D | verbose_mode.txt | 6 world 9 ; CHECK1-NEXT: world 14 ; CHECKERROR: world
|
/external/python/cpython2/Tools/world/ |
D | README | 1 world -- Print mappings between country names and DNS country codes. 7 world those addresses originate from, based on the top-level domain country 21 %% world tz us 25 %% world united 50 Usage: world [-d] [-p file] [-o] [-h] addr [addr ...]
|
/external/compiler-rt/test/tsan/Darwin/ |
D | xpc-race.mm | 17 NSLog(@"Hello world."); 60 xpc_dictionary_set_string(msg, "hello", "world"); 74 // CHECK: Hello world.
|
/external/clang/test/SemaOpenCL/ |
D | str_literals.cl | 4 constant char * __constant x = "hello world"; 11 foo("hello world");
|