Home
last modified time | relevance | path

Searched refs:CD (Results 1 – 25 of 767) sorted by relevance

12345678910>>...31

/external/harfbuzz_ng/test/shaping/tests/
Dligature-id.tests1 …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+…
6CD,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…
7CD,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…
8CD,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…
9CD,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…
10CD,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 …]
Dcontext-matching.tests3 fonts/sha1sum/f499fbc23865022234775c43503bba2e63978fe1.ttf::U+09B0,U+09CD,U+09A5,U+09CD,U+09AF,U+09…
/external/python/cpython2/Doc/library/
Dcd.rst2 :mod:`cd` --- CD-ROM access on SGI systems
7 :synopsis: Interface to the CD-ROM on Silicon Graphics systems.
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
26 An audio CD is divided into :dfn:`tracks` or :dfn:`programs` (the terms are used
27 interchangeably). Tracks can be subdivided into :dfn:`indices`. An audio CD
[all …]
/external/eigen/test/
Dmixingtypes.cpp41 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/clang/lib/Index/
DCodegenNameGenerator.cpp89 if (const auto *CD = dyn_cast_or_null<CXXConstructorDecl>(ND)) { in getAllManglings() local
90 Manglings.emplace_back(getMangledStructor(CD, Ctor_Base)); in getAllManglings()
93 if (!CD->getParent()->isAbstract()) in getAllManglings()
94 Manglings.emplace_back(getMangledStructor(CD, Ctor_Complete)); in getAllManglings()
97 if (CD->hasAttr<DLLExportAttr>() && CD->isDefaultConstructor()) in getAllManglings()
98 if (!(hasDefaultCXXMethodCC(Ctx, CD) && CD->getNumParams() == 0)) in getAllManglings()
99 Manglings.emplace_back(getMangledStructor(CD, Ctor_DefaultClosure)); in getAllManglings()
150 if (const auto *CD = dyn_cast_or_null<CXXConstructorDecl>(ND)) in getMangledStructor() local
151 MC->mangleCXXCtor(CD, static_cast<CXXCtorType>(StructorType), FOS); in getMangledStructor()
DUSRGeneration.cpp83 void VisitObjCContainerDecl(const ObjCContainerDecl *CD);
366 const ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D); in VisitObjCContainerDecl() local
367 const ObjCInterfaceDecl *ID = CD->getClassInterface(); in VisitObjCContainerDecl()
378 if (CD->IsClassExtension()) { in VisitObjCContainerDecl()
380 GenLoc(CD, /*IncludeOffset=*/true); in VisitObjCContainerDecl()
383 GenObjCCategory(ID->getName(), CD->getName()); in VisitObjCContainerDecl()
388 const ObjCCategoryImplDecl *CD = cast<ObjCCategoryImplDecl>(D); in VisitObjCContainerDecl() local
389 const ObjCInterfaceDecl *ID = CD->getClassInterface(); in VisitObjCContainerDecl()
398 GenObjCCategory(ID->getName(), CD->getName()); in VisitObjCContainerDecl()
/external/python/cpython2/Lib/plat-irix5/
Dreadcd.py6 import cd, CD
133 if cb_type != CD.PNUM:
136 if cb_type != CD.ATIME:
146 if cb_type != CD.PNUM:
149 if cb_type != CD.ATIME:
177 if self.status[0] == CD.NODISC:
214 CD.PNUM, _dopnum, self)
217 self.callbacks[CD.ATIME]
219 self.parser.setcallback(CD.ATIME, func, arg)
221 self.parser.removecallback(CD.ATIME)
[all …]
Dreadcd.doc1 Interface to CD-ROM player.
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
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
23 The optional arguments are the name of the CD device and the mode.
26 to "None" which indicates the default CD player.
31 eject() -- Eject the CD from the player.
40 of four forms. "None": for "first", the beginning of the CD, for
41 "last" the end of the CD; a single integer: a track number--playing
[all …]
/external/python/cpython2/Lib/plat-irix6/
Dreadcd.py6 import cd, CD
133 if cb_type != CD.PNUM:
136 if cb_type != CD.ATIME:
146 if cb_type != CD.PNUM:
149 if cb_type != CD.ATIME:
177 if self.status[0] == CD.NODISC:
214 CD.PNUM, _dopnum, self)
217 self.callbacks[CD.ATIME]
219 self.parser.setcallback(CD.ATIME, func, arg)
221 self.parser.removecallback(CD.ATIME)
[all …]
Dreadcd.doc1 Interface to CD-ROM player.
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
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
23 The optional arguments are the name of the CD device and the mode.
26 to "None" which indicates the default CD player.
31 eject() -- Eject the CD from the player.
40 of four forms. "None": for "first", the beginning of the CD, for
41 "last" the end of the CD; a single integer: a track number--playing
[all …]
/external/clang/lib/AST/
DMicrosoftCXXABI.cpp95 void addDefaultArgExprForConstructor(const CXXConstructorDecl *CD, in addDefaultArgExprForConstructor() argument
97 CtorToDefaultArgExpr[std::make_pair(CD, ParmIdx)] = DAE; in addDefaultArgExprForConstructor()
100 Expr *getDefaultArgExprForConstructor(const CXXConstructorDecl *CD, in getDefaultArgExprForConstructor() argument
102 return CtorToDefaultArgExpr[std::make_pair(CD, ParmIdx)]; in getDefaultArgExprForConstructor()
112 CXXConstructorDecl *CD) override { in addCopyConstructorForExceptionObject() argument
113 assert(CD != nullptr); in addCopyConstructorForExceptionObject()
114 assert(RecordToCopyCtor[RD] == nullptr || RecordToCopyCtor[RD] == CD); in addCopyConstructorForExceptionObject()
115 RecordToCopyCtor[RD] = CD; in addCopyConstructorForExceptionObject()
DMangle.cpp203 void MangleContext::mangleCtorBlock(const CXXConstructorDecl *CD, in mangleCtorBlock() argument
208 mangleCXXCtor(CD, CT, Out); in mangleCtorBlock()
237 if (const auto *CD = dyn_cast<CXXConstructorDecl>(DC)) in mangleBlock() local
238 mangleCtorBlock(CD, /*CT*/ Ctor_Complete, BD, Out); in mangleBlock()
259 const ObjCContainerDecl *CD = in mangleObjCMethodNameWithoutSize() local
261 assert (CD && "Missing container decl in GetNameForMethod"); in mangleObjCMethodNameWithoutSize()
262 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName(); in mangleObjCMethodNameWithoutSize()
263 if (const ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(CD)) in mangleObjCMethodNameWithoutSize()
DItaniumCXXABI.cpp142 CXXConstructorDecl *CD) override {} in addCopyConstructorForExceptionObject() argument
144 void addDefaultArgExprForConstructor(const CXXConstructorDecl *CD, in addDefaultArgExprForConstructor() argument
147 Expr *getDefaultArgExprForConstructor(const CXXConstructorDecl *CD, in getDefaultArgExprForConstructor() argument
/external/clang/lib/Sema/
DSemaCUDA.cpp355 bool Sema::isEmptyCudaConstructor(SourceLocation Loc, CXXConstructorDecl *CD) { in isEmptyCudaConstructor() argument
356 if (!CD->isDefined() && CD->isTemplateInstantiation()) in isEmptyCudaConstructor()
357 InstantiateFunctionDefinition(Loc, CD->getFirstDecl()); in isEmptyCudaConstructor()
362 if (CD->isTrivial()) in isEmptyCudaConstructor()
369 if (!(CD->hasTrivialBody() && CD->getNumParams() == 0)) in isEmptyCudaConstructor()
373 if (CD->getParent()->isDynamicClass()) in isEmptyCudaConstructor()
378 if (!llvm::all_of(CD->inits(), [&](const CXXCtorInitializer *CI) { in isEmptyCudaConstructor()
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/
Dstress1.c587 #define CD (td->cd[i+(j*NSCENAR)]) in main() macro
588 CD.pBool = &(td->boolean); in main()
589 CD.fork = do_fork; in main()
590 CD.cid = cid; in main()
593 ret = pthread_cond_init(&(CD.cnd), &ca); in main()
599 ret = pthread_mutex_init(&(CD.mtx), &ma); in main()
603 #undef CD in main()
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
Dstress1.c602 #define CD (td->cd[i+(j*NSCENAR)]) in main() macro
603 CD.pBool = &(td->boolean); in main()
604 CD.fork = do_fork; in main()
605 CD.cid = cid; in main()
608 ret = pthread_cond_init(&(CD.cnd), &ca); in main()
614 ret = pthread_mutex_init(&(CD.mtx), &ma); in main()
618 #undef CD in main()
/external/syslinux/dosutil/
Deltorito.asm5 ; El Torito Bootable CD-ROM driver which does not reset the CD-ROM drive upon
759 ; CD-ROM sector read
808 ; mov si,offset SpecPkt ;Locate booted CD-ROM drive
810 ; mov ax,4B01h ;Get Bootable CD-ROM Status
812 ; jnc FindPass ;If booted CD found
1035 mov ax,4B01h ;Get Bootable CD-ROM Status
1077 NoBootCD db ' No booted CD-ROM found.',CR,0
1080 db 'Booted CD-ROM:',CR,' ', 0
/external/llvm/unittests/Support/
DCasting.cpp292 const pointer_wrappers::PTy CD(&D); variable
298 EXPECT_TRUE(isa<pointer_wrappers::Derived>(CD)); in TEST()
303 EXPECT_TRUE(cast<pointer_wrappers::Derived>(CD) == &D); in TEST()
310 EXPECT_TRUE(cast_or_null<pointer_wrappers::Derived>(CD) == &D); in TEST()
317 EXPECT_TRUE(dyn_cast<pointer_wrappers::Derived>(CD) == &D); in TEST()
326 EXPECT_TRUE(dyn_cast_or_null<pointer_wrappers::Derived>(CD) == &D); in TEST()
/external/icu/icu4c/source/data/translit/
Dlt_Lower.txt15 # 00CD; 0069 0307 0301; 00CD; 00CD; lt; # LATIN CAPITAL LETTER I WITH ACUTE
/external/clang/lib/CodeGen/
DCGCXXABI.cpp48 for (const CXXConstructorDecl *CD : RD->ctors()) { in canCopyArgument() local
49 if (CD->isCopyConstructor() || CD->isMoveConstructor()) { in canCopyArgument()
50 assert(CD->isTrivial()); in canCopyArgument()
53 if (!CD->isDeleted()) in canCopyArgument()
55 if (CD->isCopyConstructor()) in canCopyArgument()
/external/python/cpython2/Lib/plat-sunos5/
DSUNAUDIODEV.py42 CD = 0x04 # input from on-board CD inputs variable
43 INTERNAL_CD_IN = CD # input from internal CDROM
/external/syslinux/txt/
Disolinux.txt12 isolinux - The Syslinux derivative ISOLINUX for ISO9660 CD/DVD media
25 Torito CD-ROMs in "no emulation" mode. This avoids the need to create
48 == HYBRID CD-ROM/HARD DISK MODE ==
51 be booted from either CD-ROM or from a device which BIOS considers a
65 CD-ROM using standard CD burning tools.
/external/syslinux/doc/
Disolinux.txt3 A bootloader for Linux using ISO 9660/El Torito CD-ROMs
15 Torito CD-ROMs in "no emulation" mode. This avoids the need to create
80 ++++ HYBRID CD-ROM/HARD DISK MODE ++++
83 be booted from either CD-ROM or from a device which BIOS considers a
97 CD-ROM using standard CD burning tools.
/external/llvm/test/Transforms/LoopVectorize/ARM/
Dinterleaved_cost.ll8 @CD = common global [1024 x i8] zeroinitializer, align 4
29 %arrayidx2 = getelementptr inbounds [1024 x i8], [1024 x i8]* @CD, i64 0, i64 %indvars.iv
31 %arrayidx3 = getelementptr inbounds [1024 x i8], [1024 x i8]* @CD, i64 0, i64 %tmp1
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/out/
Ddataurl-nonbase64-doublequotes.out.b1 …QQ%FA%FA%FA%FC%FC%FC%EE%EE%EE%A9%A9%A9%E9%E9%E9%0A%0A%0A%0D%0D%0D444PPP%CD%CD%CD%CC%CC%CC%F5%F5%F5…

12345678910>>...31