/external/harfbuzz_ng/test/shaping/data/in-house/tests/ |
D | ligature-id.tests | 1 …4c1b2aa173262734c1f616148f1648cfd6.ttf::U+0995,U+09CD,U+0995,U+0020,U+0995,U+09CD,U+09B0,U+0995,U+… 2 …62734c1f616148f1648cfd6.ttf::U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0020,U+0995,U+09CD,U+09B0… 3 …6148f1648cfd6.ttf::U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0020,U+0995,U+… 4 …d6.ttf::U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0020… 5 …0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+… 6 …CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+09… 7 …CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+09… 8 …CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+09… 9 …CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+09… 10 …CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+0995,U+09CD,U+0995,U+09… [all …]
|
/external/autotest/client/common_lib/ |
D | control_data_unittest.py | 69 cd = ControlData({'suite': 'foo,bar'}, 'filename') 70 self.assertEqual(set(cd.suite_tag_parts), {'foo', 'bar'}) 74 cd = ControlData({}, 'filename') 75 self.assertEqual(cd.suite_tag_parts, []) 91 cd = control_data.parse_control(self.control_tmp.name, True) 92 self.assertEquals(cd.author, "Author") 93 self.assertEquals(cd.dependencies, set(['console', 'power'])) 94 self.assertEquals(cd.doc, "doc stuff") 95 self.assertEquals(cd.experimental, False) 96 self.assertEquals(cd.name, "nAmE") [all …]
|
/external/python/cpython2/Doc/library/ |
D | cd.rst | 2 :mod:`cd` --- CD-ROM access on SGI systems 5 .. module:: cd 7 :synopsis: Interface to the CD-ROM on Silicon Graphics systems. 12 The :mod:`cd` module has been removed in Python 3. 15 This module provides an interface to the Silicon Graphics CD library. It is 18 The way the library works is as follows. A program opens the CD-ROM device with 19 :func:`.open` and creates a parser to parse the data from the CD with 21 data from the CD, but also to get status information for the CD-ROM device, and 22 to get information about the CD, such as the table of contents. Data from the 23 CD is passed to the parser, which parses the frames, and calls any callback [all …]
|
/external/cblas/ |
D | Makefile | 85 ( cd testing && make clean ) 86 ( cd src && make clean ) 90 ( cd testing && make cleanobj ) 91 ( cd src && make clean ) 94 ( cd testing && make cleanexe ) 117 ( cd src && make slib1) 119 ( cd src && make dlib1) 121 ( cd src && make clib1) 123 ( cd src && make zlib1) 125 ( cd src && make all1) [all …]
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/ |
D | ConstructorDeclarationTransformationsTest.java | 50 ConstructorDeclaration cd = consider("A(){}"); in settingName() local 51 cd.setName("B"); in settingName() 52 assertTransformedToString("B(){}", cd); in settingName() 61 ConstructorDeclaration cd = consider("A(){}"); in addingModifiers() local 62 cd.setModifiers(EnumSet.of(Modifier.PUBLIC)); in addingModifiers() 63 assertTransformedToString("public A(){}", cd); in addingModifiers() 68 ConstructorDeclaration cd = consider("public A(){}"); in removingModifiers() local 69 cd.setModifiers(EnumSet.noneOf(Modifier.class)); in removingModifiers() 70 assertTransformedToString("A(){}", cd); in removingModifiers() 75 ConstructorDeclaration cd = consider("public A(){}"); in replacingModifiers() local [all …]
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/ |
D | NodeListTest.java | 80 ClassOrInterfaceDeclaration cd = cu.getClassByName("A").get(); 81 cd.getMembers().register(createObserver(changes)); 83 …cd.getMembers().addAll(Arrays.asList(createIntField("a"), createIntField("b"), createIntField("c")… 94 ClassOrInterfaceDeclaration cd = cu.getClassByName("A").get(); 95 cd.getMembers().register(createObserver(changes)); 97 …cd.getMembers().addAll(0, Arrays.asList(createIntField("a"), createIntField("b"), createIntField("… 108 ClassOrInterfaceDeclaration cd = cu.getClassByName("A").get(); 109 cd.getMembers().register(createObserver(changes)); 111 cd.getMembers().clear(); 122 ClassOrInterfaceDeclaration cd = cu.getClassByName("A").get(); [all …]
|
/external/protobuf/ |
D | tests.sh | 38 cd conformance && make test_cpp && cd .. 41 cd benchmarks && make && ./generate-datasets && cd .. 68 (cd csharp/src; mono $NUGET restore) 70 cd conformance && make test_csharp && cd .. 88 cd examples && make gotest && cd .. 132 cd $dir && $MVN clean && $MVN test 133 cd ../.. 141 cd java && $MVN test && $MVN install 142 cd util && $MVN package assembly:single 143 cd ../.. [all …]
|
/external/eigen/test/ |
D | mixingtypes.cpp | 41 typedef std::complex<double> CD; in mixingtypes() typedef 74 while(std::abs(scd)<epsd) scd = internal::random<CD>(); in mixingtypes() 150 VERIFY_IS_APPROX(sd*md*mcd, (sd*md).template cast<CD>().eval()*mcd); in mixingtypes() 151 VERIFY_IS_APPROX(sd*mcd*md, sd*mcd*md.template cast<CD>()); in mixingtypes() 152 VERIFY_IS_APPROX(scd*md*mcd, scd*md.template cast<CD>().eval()*mcd); in mixingtypes() 153 VERIFY_IS_APPROX(scd*mcd*md, scd*mcd*md.template cast<CD>()); in mixingtypes() 160 VERIFY_IS_APPROX(sd*md.adjoint()*mcd, (sd*md).template cast<CD>().eval().adjoint()*mcd); in mixingtypes() 161 VERIFY_IS_APPROX(sd*mcd.adjoint()*md, sd*mcd.adjoint()*md.template cast<CD>()); in mixingtypes() 162 …VERIFY_IS_APPROX(sd*md.adjoint()*mcd.adjoint(), (sd*md).template cast<CD>().eval().adjoint()*mcd.a… in mixingtypes() 163 …VERIFY_IS_APPROX(sd*mcd.adjoint()*md.adjoint(), sd*mcd.adjoint()*md.template cast<CD>().adjoint()); in mixingtypes() [all …]
|
/external/u-boot/arch/arm/cpu/armv7/bcm235xx/ |
D | clk-core.c | 82 struct peri_clk_data *cd = peri_clk->data; in peri_clk_enable() local 83 struct bcm_clk_gate *gate = &cd->gate; in peri_clk_enable() 106 reg = readl(base + cd->gate.offset); in peri_clk_enable() 107 reg |= (1 << cd->gate.en_bit); in peri_clk_enable() 108 writel(reg, base + cd->gate.offset); in peri_clk_enable() 112 if (divider_exists(&cd->div)) { in peri_clk_enable() 113 reg = readl(base + cd->div.offset); in peri_clk_enable() 114 bitfield_replace(reg, cd->div.shift, cd->div.width, in peri_clk_enable() 116 writel(reg, base + cd->div.offset); in peri_clk_enable() 120 if (selector_exists(&cd->sel)) { in peri_clk_enable() [all …]
|
/external/u-boot/arch/arm/cpu/armv7/bcm281xx/ |
D | clk-core.c | 82 struct peri_clk_data *cd = peri_clk->data; in peri_clk_enable() local 83 struct bcm_clk_gate *gate = &cd->gate; in peri_clk_enable() 106 reg = readl(base + cd->gate.offset); in peri_clk_enable() 107 reg |= (1 << cd->gate.en_bit); in peri_clk_enable() 108 writel(reg, base + cd->gate.offset); in peri_clk_enable() 112 if (divider_exists(&cd->div)) { in peri_clk_enable() 113 reg = readl(base + cd->div.offset); in peri_clk_enable() 114 bitfield_replace(reg, cd->div.shift, cd->div.width, in peri_clk_enable() 116 writel(reg, base + cd->div.offset); in peri_clk_enable() 120 if (selector_exists(&cd->sel)) { in peri_clk_enable() [all …]
|
/external/autotest/server/site_tests/bluetooth_AdapterLEAdvertising/ |
D | bluetooth_AdapterLEAdvertising.py | 8 CD: check advertising duration and intervals 138 """Test Case: SI(200) - RA(3) - CD - UA(3)""" 160 """Test Case: SI(200) - RA(3) - CD - RA(1) - CD - UA(1) - CD - UA(3)""" 211 """Test Case: SI(200) - RA(3) - CD - RS""" 234 """Test Case: SI(200) - RA(3) - CD - UA(1) - CD - RS""" 269 """Test Case: SI(200) - RA(3) - CD - UA(1) - CD - RA(2) - CD - UA(4)""" 321 """Test Case: SI(200) - RA(5) - CD - FRA(1) - CD - UA(5)""" 353 """Test Case: SI(200) - RA(3) - CD - PC - CD - UA(3)""" 384 """Test Case: SI(200) - RA(3) - CD - SR - CD - UA(3)""" 413 """Test Case: RA(3) - CD - SI(200) - CD - UA(3)""" [all …]
|
/external/grpc-grpc/test/distrib/cpp/ |
D | run_distrib_test_cmake.bat | 16 cd /d %~dp0\..\..\.. 23 set INSTALL_DIR=%cd:\=/%/testinstall 30 set OPENSSL_DIR=%cd:\=/%/OpenSSL-Win32 32 cd third_party/zlib 34 cd cmake 37 cd ../../.. 39 cd third_party/protobuf/cmake 41 cd build 44 cd ../../../.. 46 cd third_party/cares/cares [all …]
|
D | run_distrib_test_cmake.sh | 18 cd "$(dirname "$0")/../../.." 25 cd third_party/cares/cares 29 cd cmake/build 32 cd ../../../../.. 36 cd third_party/zlib 38 cd cmake/build 41 cd ../../../.. 45 cd third_party/protobuf 47 cd cmake/build 50 cd ../../../.. [all …]
|
/external/pdfium/third_party/libtiff/ |
D | tif_compress.c | 190 codec_t* cd; in TIFFFindCODEC() local 192 for (cd = registeredCODECS; cd; cd = cd->next) in TIFFFindCODEC() 193 if (cd->info->scheme == scheme) in TIFFFindCODEC() 194 return ((const TIFFCodec*) cd->info); in TIFFFindCODEC() 204 codec_t* cd = (codec_t*) in TIFFRegisterCODEC() local 207 if (cd != NULL) { in TIFFRegisterCODEC() 208 cd->info = (TIFFCodec*) ((uint8*) cd + sizeof (codec_t)); in TIFFRegisterCODEC() 209 cd->info->name = (char*) in TIFFRegisterCODEC() 210 ((uint8*) cd->info + sizeof (TIFFCodec)); in TIFFRegisterCODEC() 211 strcpy(cd->info->name, name); in TIFFRegisterCODEC() [all …]
|
/external/vulkan-validation-layers/build-android/ |
D | android-generate.sh | 18 dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P) 19 cd $dir 26 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… 27 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… 28 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… 29 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… 30 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… 31 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… 32 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… 33 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry $HEADERS_REGISTRY_PATH/vk.x… [all …]
|
/external/capstone/bindings/ |
D | Makefile | 18 cd python && $(MAKE) gen_const 19 cd java && $(MAKE) gen_const 20 cd ocaml && $(MAKE) gen_const 28 cd ../tests && $(MAKE) 41 cd python && $(MAKE) 54 cd java && $(MAKE) 55 cd java && ./run.sh > $(TEST)_o 56 cd java && ./run.sh arm > $(TEST_ARM)_o 57 cd java && ./run.sh arm64 > $(TEST_ARM64)_o 58 cd java && ./run.sh mips > $(TEST_MIPS)_o [all …]
|
/external/google-breakpad/src/third_party/libdisasm/swig/ |
D | Makefile | 22 cd python && make -f Makefile-swig 25 cd ruby && make -f Makefile-swig 28 cd perl && make -f Makefile-swig 31 cd tcl && make -f Makefile-swig 38 cd python && sudo make -f Makefile-swig install 41 cd ruby && sudo make -f Makefile-swig install 44 cd perl && sudo make -f Makefile-swig install 47 cd tcl && sudo make -f Makefile-swig install 54 cd python && sudo make -f Makefile-swig uninstall 57 cd ruby && sudo make -f Makefile-swig uninstall [all …]
|
/external/python/cpython2/Lib/plat-irix5/ |
D | readcd.doc | 1 Interface to CD-ROM player. 3 This module implements an interface to the built-in cd module. The 8 initialization of the class will try to open the CD player. This 9 means that initialization will fail if the CD player is already in 10 use. A RuntimeError will be raised by the cd module in that case. 13 the parts of the CD that are to be read and he specifies callback 15 tell the system to play. The specified parts of the CD will then be 21 r = readcd.Readcd([cd-player [, mode]]) 23 The optional arguments are the name of the CD device and the mode. 25 possible value); when "cd-player" also isn't specified, it defaults [all …]
|
/external/python/cpython2/Lib/plat-irix6/ |
D | readcd.doc | 1 Interface to CD-ROM player. 3 This module implements an interface to the built-in cd module. The 8 initialization of the class will try to open the CD player. This 9 means that initialization will fail if the CD player is already in 10 use. A RuntimeError will be raised by the cd module in that case. 13 the parts of the CD that are to be read and he specifies callback 15 tell the system to play. The specified parts of the CD will then be 21 r = readcd.Readcd([cd-player [, mode]]) 23 The optional arguments are the name of the CD device and the mode. 25 possible value); when "cd-player" also isn't specified, it defaults [all …]
|
/external/libxml2/os400/iconv/ |
D | iconv.c | 101 iconv_t * cd; in IconvOpen() local 110 cd = (iconv_t *) malloc(sizeof *cd); in IconvOpen() 112 if (!cd) in IconvOpen() 115 *cd = iconv_open(toibmccsid, fromibmccsid); in IconvOpen() 117 if (cd->return_value) { in IconvOpen() 118 free((char *) cd); in IconvOpen() 122 return (Iconv_t) cd; in IconvOpen() 127 Iconv(Iconv_t cd, char * * inbuf, size_t * inbytesleft, in Iconv() argument 131 if (!cd || cd == (Iconv_t) -1) { in Iconv() 136 return iconv(*(iconv_t *) cd, inbuf, inbytesleft, outbuf, outbytesleft); in Iconv() [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_blend_equation_advanced.cpp | 41 /* f(Cs,Cd) = Cs*Cd */ in blend_multiply() 48 /* f(Cs,Cd) = Cs+Cd-Cs*Cd */ in blend_screen() 57 /* f(Cs,Cd) = 2*Cs*Cd, if Cd <= 0.5 in blend_overlay() 58 * 1-2*(1-Cs)*(1-Cd), otherwise in blend_overlay() 69 /* f(Cs,Cd) = min(Cs,Cd) */ in blend_darken() 76 /* f(Cs,Cd) = max(Cs,Cd) */ in blend_lighten() 85 /* f(Cs,Cd) = in blend_colordodge() 86 * 0, if Cd <= 0 in blend_colordodge() 87 * min(1,Cd/(1-Cs)), if Cd > 0 and Cs < 1 in blend_colordodge() 88 * 1, if Cd > 0 and Cs >= 1 in blend_colordodge() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | world_bank_data.csv | 3 Afghanistan,AFG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,19202168208.0175,21252… 5 Albania,ALB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12811632389.5263,14065584344.906… 7 Algeria,DZA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,239902565103.632,258154158879.52… 9 American Samoa,ASM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,.… 11 Andorra,AND,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..… 13 Angola,AGO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,30548627728.153,32935156925.3232,… 15 Antigua and Barbuda,ATG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1185528868.57469,118… 17 Argentina,ARG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,426027857759.807,415584811228.… 19 Armenia,ARM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,7312962664.13328,8216359860.0902… 21 Aruba,ABW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,.… [all …]
|
/external/e2fsprogs/e2fsck/ |
D | pass2.c | 130 struct check_dir_struct cd; in e2fsck_pass2() local 142 clear_problem_context(&cd.pctx); in e2fsck_pass2() 149 fix_problem(ctx, PR_2_PASS_HEADER, &cd.pctx); in e2fsck_pass2() 151 cd.pctx.errcode = e2fsck_setup_icount(ctx, "inode_count", in e2fsck_pass2() 154 if (cd.pctx.errcode) { in e2fsck_pass2() 155 fix_problem(ctx, PR_2_ALLOCATE_ICOUNT, &cd.pctx); in e2fsck_pass2() 169 cd.buf = buf; in e2fsck_pass2() 170 cd.ctx = ctx; in e2fsck_pass2() 171 cd.count = 1; in e2fsck_pass2() 172 cd.max = ext2fs_dblist_count2(fs->dblist); in e2fsck_pass2() [all …]
|
/external/grpc-grpc/templates/tools/dockerfile/ |
D | clang_update.include | 5 cd llvm && git checkout ad57503 && cd .. 7 cd clang && git checkout ad2c56e && cd .. 9 cd compiler-rt && git checkout 3176922 && cd .. 11 http://llvm.org/git/clang-tools-extra.git && cd clang-tools-extra && ${'\\'} 12 git checkout c288525 && cd .. 14 cd libcxx && git checkout fda3549 && cd .. 16 cd libcxxabi && git checkout 8d4e51d && cd .. 25 RUN cd llvm-build && cmake ${'\\'}
|
/external/grpc-grpc/src/core/lib/surface/ |
D | call_details.cc | 30 void grpc_call_details_init(grpc_call_details* cd) { in grpc_call_details_init() argument 31 GRPC_API_TRACE("grpc_call_details_init(cd=%p)", 1, (cd)); in grpc_call_details_init() 32 memset(cd, 0, sizeof(*cd)); in grpc_call_details_init() 33 cd->method = grpc_empty_slice(); in grpc_call_details_init() 34 cd->host = grpc_empty_slice(); in grpc_call_details_init() 37 void grpc_call_details_destroy(grpc_call_details* cd) { in grpc_call_details_destroy() argument 38 GRPC_API_TRACE("grpc_call_details_destroy(cd=%p)", 1, (cd)); in grpc_call_details_destroy() 40 grpc_slice_unref_internal(cd->method); in grpc_call_details_destroy() 41 grpc_slice_unref_internal(cd->host); in grpc_call_details_destroy()
|