/external/harfbuzz_ng/test/shaping/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 | 71 cd = ControlData({'suite': 'foo,bar'}, 'filename') 72 self.assertEqual(set(cd.suite_tag_parts), {'foo', 'bar'}) 76 cd = ControlData({}, 'filename') 77 self.assertEqual(cd.suite_tag_parts, []) 93 cd = control_data.parse_control(self.control_tmp.name, True) 94 self.assertEquals(cd.author, "Author") 95 self.assertEquals(cd.dependencies, set(['console', 'power'])) 96 self.assertEquals(cd.doc, "doc stuff") 97 self.assertEquals(cd.experimental, False) 98 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/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/ |
D | csiszar_divergence_test.py | 37 cd = csiszar_divergence_impl variable 59 cd.amari_alpha(0., alpha=alpha, 66 cd.amari_alpha(self._logu, alpha=0.).eval(), 70 cd.amari_alpha(self._logu, alpha=0., self_normalized=True).eval(), 76 cd.amari_alpha(self._logu, alpha=1.).eval(), 80 cd.amari_alpha(self._logu, alpha=1., self_normalized=True).eval(), 87 cd.amari_alpha(self._logu, 93 cd.amari_alpha(self._logu, 110 cd.kl_reverse(0., self_normalized=normalized).eval(), 116 cd.kl_reverse(self._logu).eval(), [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/util/ |
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/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/autotest/server/site_tests/bluetooth_AdapterLEAdvertising/ |
D | bluetooth_AdapterLEAdvertising.py | 8 CD: check advertising duration and intervals 132 """Test Case: SI(200) - RA(3) - CD - UA(3)""" 154 """Test Case: SI(200) - RA(3) - CD - RA(1) - CD - UA(1) - CD - UA(3)""" 205 """Test Case: SI(200) - RA(3) - CD - RS""" 228 """Test Case: SI(200) - RA(3) - CD - UA(1) - CD - RS""" 263 """Test Case: SI(200) - RA(3) - CD - UA(1) - CD - RA(2) - CD - UA(4)""" 315 """Test Case: SI(200) - RA(5) - CD - FRA(1) - CD - UA(5)""" 347 """Test Case: SI(200) - RA(3) - CD - PC - CD - UA(3)""" 378 """Test Case: SI(200) - RA(3) - CD - SR - CD - UA(3)""" 407 """Test Case: RA(3) - CD - SI(200) - CD - UA(3)""" [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/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/valgrind/docs/internals/ |
D | howto_BUILD_KDE42.txt | 72 cd qt-x11-opensource-src-4.4.3 122 for each package, use a separate source and build dir cd to the build 153 cd ~ 156 cd build 158 cd kdesupport 165 cd ~/build 167 cd kdelibs 174 cd ~/build 176 cd kdepimlibs 183 cd ~/build [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_blend_equation_advanced.cpp | 40 /* f(Cs,Cd) = Cs*Cd */ in blend_multiply() 47 /* f(Cs,Cd) = Cs+Cd-Cs*Cd */ in blend_screen() 56 /* f(Cs,Cd) = 2*Cs*Cd, if Cd <= 0.5 in blend_overlay() 57 * 1-2*(1-Cs)*(1-Cd), otherwise in blend_overlay() 68 /* f(Cs,Cd) = min(Cs,Cd) */ in blend_darken() 75 /* f(Cs,Cd) = max(Cs,Cd) */ in blend_lighten() 84 /* f(Cs,Cd) = in blend_colordodge() 85 * 0, if Cd <= 0 in blend_colordodge() 86 * min(1,Cd/(1-Cs)), if Cd > 0 and Cs < 1 in blend_colordodge() 87 * 1, if Cd > 0 and Cs >= 1 in blend_colordodge() [all …]
|
/external/vulkan-validation-layers/build-android/ |
D | android-generate.sh | 18 dir=$(cd -P -- "$(dirname -- "$0")" && pwd -P) 19 cd $dir 24 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml vk_… 25 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml vk_… 26 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml vk_… 27 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml vk_… 28 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml vk_… 29 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml vk_… 30 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml vk_… 31 ( cd generated/include; python3 ../../../scripts/lvl_genvk.py -registry ../../../scripts/vk.xml thr… [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/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/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/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/e2fsprogs/e2fsck/ |
D | pass2.c | 97 struct check_dir_struct cd; in e2fsck_pass2() local 109 clear_problem_context(&cd.pctx); in e2fsck_pass2() 116 fix_problem(ctx, PR_2_PASS_HEADER, &cd.pctx); in e2fsck_pass2() 118 cd.pctx.errcode = e2fsck_setup_icount(ctx, "inode_count", in e2fsck_pass2() 121 if (cd.pctx.errcode) { in e2fsck_pass2() 122 fix_problem(ctx, PR_2_ALLOCATE_ICOUNT, &cd.pctx); in e2fsck_pass2() 136 cd.buf = buf; in e2fsck_pass2() 137 cd.ctx = ctx; in e2fsck_pass2() 138 cd.count = 1; in e2fsck_pass2() 139 cd.max = ext2fs_dblist_count2(fs->dblist); in e2fsck_pass2() [all …]
|
/external/pcre/dist2/ |
D | RunGrepTest | 109 (cd $srcdir; $valgrind $vjs $pcre2grep PATTERN ./testdata/grepinput) >>testtrygrep 113 (cd $srcdir; $valgrind $vjs $pcre2grep '^PATTERN' ./testdata/grepinput) >>testtrygrep 117 (cd $srcdir; $valgrind $vjs $pcre2grep -in PATTERN ./testdata/grepinput) >>testtrygrep 121 (cd $srcdir; $valgrind $vjs $pcre2grep -ic PATTERN ./testdata/grepinput) >>testtrygrep 125 (cd $srcdir; $valgrind $vjs $pcre2grep -in PATTERN ./testdata/grepinput ./testdata/grepinputx) >>te… 129 (cd $srcdir; $valgrind $vjs $pcre2grep -inh PATTERN ./testdata/grepinput ./testdata/grepinputx) >>t… 133 (cd $srcdir; $valgrind $vjs $pcre2grep -il PATTERN ./testdata/grepinput ./testdata/grepinputx) >>te… 137 (cd $srcdir; $valgrind $vjs $pcre2grep -l PATTERN ./testdata/grepinput ./testdata/grepinputx) >>tes… 141 (cd $srcdir; $valgrind $vjs $pcre2grep -q PATTERN ./testdata/grepinput ./testdata/grepinputx) >>tes… 145 (cd $srcdir; $valgrind $vjs $pcre2grep -q NEVER-PATTERN ./testdata/grepinput ./testdata/grepinputx)… [all …]
|
/external/tensorflow/tensorflow/contrib/makefile/ |
D | create_ios_frameworks.sh | 27 SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" 50 cd $SCRIPT_DIR/../../.. 52 cd $FW_DIR_TFCORE_HDRS 57 cd $SCRIPT_DIR/../../.. 59 cd $FW_DIR_TFCORE_HDRS 64 cd $SCRIPT_DIR/downloads/eigen 66 cd $FW_DIR_TFCORE_HDRS/third_party/eigen3 71 cd $SCRIPT_DIR/downloads/eigen 73 cd $FW_DIR_TFCORE_HDRS/third_party/eigen3 78 cd $SCRIPT_DIR/gen/proto [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_cd.py | 1 """Whimpy test script for the cd module 6 cd = import_module('cd') variable 13 # This is a very inobtrusive test for the existence of the cd module and all its 14 # attributes. More comprehensive examples can be found in Demo/cd and 15 # require that you have a CD and a CD ROM drive 18 # touch all the attributes of cd without doing anything 20 print 'Touching cd module attributes...' 24 getattr(cd, attr)
|
/external/syslinux/com32/lua/ |
D | Makefile | 55 cd src && $(MAKE) $@ 61 …cd src && $(MKDIR) $(INSTALL_BIN) $(INSTALL_INC) $(INSTALL_LIB) $(INSTALL_MAN) $(INSTALL_LMOD) $(I… 62 cd src && $(INSTALL_EXEC) $(TO_BIN) $(INSTALL_BIN) 63 cd src && $(INSTALL_DATA) $(TO_INC) $(INSTALL_INC) 64 cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB) 65 cd doc && $(INSTALL_DATA) $(TO_MAN) $(INSTALL_MAN) 68 cd src && cd $(INSTALL_BIN) && $(RM) $(TO_BIN) 69 cd src && cd $(INSTALL_INC) && $(RM) $(TO_INC) 70 cd src && cd $(INSTALL_LIB) && $(RM) $(TO_LIB) 71 cd doc && cd $(INSTALL_MAN) && $(RM) $(TO_MAN) [all …]
|