/external/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 139 } Contents; variable 260 return Contents.Reg.Next; in getNextOperandForReg() 338 return Contents.ImmVal; in getImm() 343 return Contents.CI; in getCImm() 348 return Contents.CFP; in getFPImm() 353 return Contents.MBB; in getMBB() 359 return Contents.OffsetedInfo.Val.Index; in getIndex() 364 return Contents.OffsetedInfo.Val.GV; in getGlobal() 369 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 374 return Contents.Sym; in getMCSymbol() [all …]
|
D | ScheduleDAG.h | 81 } Contents; variable 98 : Dep(S, kind), Contents(), Latency(latency) { in Dep() 108 Contents.Reg = Reg; in Dep() 112 Contents.Order.isNormalMemory = isNormalMemory; in Dep() 113 Contents.Order.isMustAlias = isMustAlias; in Dep() 114 Contents.Order.isArtificial = isArtificial; in Dep() 125 return Contents.Reg == Other.Contents.Reg; 127 return Contents.Order.isNormalMemory == 128 Other.Contents.Order.isNormalMemory && 129 Contents.Order.isMustAlias == Other.Contents.Order.isMustAlias && [all …]
|
/external/llvm/include/llvm/ADT/ |
D | InMemoryStruct.h | 37 value_type Contents; variable 43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} in InMemoryStruct() 48 if (Value.Target != &Value.Contents) { 51 Target = &Contents; 52 Contents = Value.Contents;
|
/external/libvpx/examples/includes/HTML-Toc-0.91/t/ |
D | manualTest.t | 88 'insertionPoint' => "replace <!-- Table of Contents -->", 199 <h1 class=hidden>Table of Contents</h1> 201 <!-- Table of Contents generated by Perl - HTML::Toc --> 240 <!-- End of generated Table of Contents --> 245 <!-- Table of Contents generated by Perl - HTML::Toc --> 247 <li><a href=#Figure-1>Contents Compiler Disk v1</a> 248 <li><a href=#Figure-2>Contents Compiler Disk v2</a> 250 <!-- End of generated Table of Contents --> 255 <!-- Table of Contents generated by Perl - HTML::Toc --> 259 <!-- End of generated Table of Contents --> [all …]
|
D | podExamples.t | 70 <!-- Table of Contents generated by Perl - HTML::Toc --> 75 <!-- End of generated Table of Contents --> 113 <!-- Table of Contents generated by Perl - HTML::Toc --> 118 <!-- End of generated Table of Contents --> 146 <!-- Table of Contents generated by Perl - HTML::Toc --> 150 <!-- End of generated Table of Contents --> 180 <!-- Table of Contents generated by Perl - HTML::Toc --> 184 <!-- End of generated Table of Contents --> 220 <!-- Table of Contents generated by Perl - HTML::Toc --> 224 <!-- End of generated Table of Contents --> [all …]
|
D | format.t | 118 <!-- Table of Contents generated by Perl - HTML::Toc --> 127 <!-- End of generated Table of Contents --> 148 <!-- Table of Contents generated by Perl - HTML::Toc --> 155 <!-- End of generated Table of Contents -->
|
D | insert.t | 148 <!-- Table of Contents generated by Perl - HTML::Toc --> 159 <!-- End of generated Table of Contents --> 208 <!-- Table of Contents generated by Perl - HTML::Toc --> 220 <!-- End of generated Table of Contents --> 258 <!-- Table of Contents generated by Perl - HTML::Toc --> 269 <!-- End of generated Table of Contents --> 307 <!-- Table of Contents generated by Perl - HTML::Toc --> 318 <!-- End of generated Table of Contents -->
|
D | options.t | 57 <!-- Table of Contents generated by Perl - HTML::Toc --> 61 <!-- End of generated Table of Contents --> 95 <!-- Table of Contents generated by Perl - HTML::Toc --> 99 <!-- End of generated Table of Contents -->
|
D | siteMap.t | 66 <!-- Table of Contents generated by Perl - HTML::Toc --> 82 <!-- End of generated Table of Contents -->
|
/external/llvm/include/llvm/MC/ |
D | MCAssembler.h | 109 SmallString<32> Contents; variable 124 SmallString<32> &getContents() { return Contents; } in getContents() 125 const SmallString<32> &getContents() const { return Contents; } in getContents() 336 SmallString<8> Contents; variable 340 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); } in MCLEBFragment() 349 SmallString<8> &getContents() { return Contents; } in getContents() 350 const SmallString<8> &getContents() const { return Contents; } in getContents() 369 SmallString<8> Contents; variable 375 LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); } in MCDwarfLineAddrFragment() 384 SmallString<8> &getContents() { return Contents; } in getContents() [all …]
|
/external/chromium/chrome/browser/download/ |
D | download_types.h | 31 typedef std::pair<net::IOBuffer*, int> Contents; typedef 32 std::vector<Contents> contents;
|
/external/markdown/docs/extensions/ |
D | Tables_of_Contents.txt | 1 Table of Contents 7 Adds a Table of Contents to a Markdown document. 42 * **marker**: Text to find and replace with the Table of Contents. Defaults
|
/external/libvpx/examples/includes/HTML-Toc-0.91/ |
D | Toc.pod | 3 HTML::Toc - Generate, insert and update HTML Table of Contents. 7 Generate, insert and update HTML Table of Contents. 18 HTML::Toc is the object which will eventually hold the Table of Contents. HTML::TocGenerator does … 103 <!-- Table of Contents generated by Perl - HTML::Toc --> 107 <!-- End of generated Table of Contents --> 133 <!-- Table of Contents generated by Perl - HTML::Toc --> 137 <!-- End of generated Table of Contents --> 176 <!-- Table of Contents generated by Perl - HTML::Toc --> 180 <!-- End of generated Table of Contents --> 218 <!-- Table of Contents generated by Perl - HTML::Toc --> [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 58 Contents.Reg.Prev = 0; in AddRegOperandToRegInfo() 59 Contents.Reg.Next = 0; in AddRegOperandToRegInfo() 70 Head = &(*Head)->Contents.Reg.Next; in AddRegOperandToRegInfo() 72 Contents.Reg.Next = *Head; in AddRegOperandToRegInfo() 73 if (Contents.Reg.Next) { in AddRegOperandToRegInfo() 74 assert(getReg() == Contents.Reg.Next->getReg() && in AddRegOperandToRegInfo() 76 Contents.Reg.Next->Contents.Reg.Prev = &Contents.Reg.Next; in AddRegOperandToRegInfo() 79 Contents.Reg.Prev = Head; in AddRegOperandToRegInfo() 88 MachineOperand *NextOp = Contents.Reg.Next; in RemoveRegOperandFromRegInfo() 89 *Contents.Reg.Prev = NextOp; in RemoveRegOperandFromRegInfo() [all …]
|
/external/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 15 Contents 99 Top | Contents | Next | Previous 105 Top | Contents | Next | Previous 119 Top | Contents | Next | Previous 142 Top | Contents | Next | Previous 148 Top | Contents | Next | Previous 157 Top | Contents | Next | Previous 161 Top | Contents | Next | Previous 165 Top | Contents | Next | Previous 169 Top | Contents | Next | Previous [all …]
|
/external/clang/test/CodeGenCXX/ |
D | 2010-03-09-AnonAggregate.cpp | 8 …struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents; member in MO
|
/external/chromium/chrome/common/ |
D | chrome_paths_mac.mm | 35 // From C.app/Contents/Versions/1.2.3.4, go up three steps to get to C.app. 141 // One step up to MacOS, another to Contents. 143 DCHECK_EQ(path.BaseName().value(), "Contents"); 146 // path identifies the helper .app's Contents directory in the browser
|
/external/bison/ |
D | PACKAGING | 9 Contents: Runtime libraries and programs. 14 Contents: Tools and documentation for developers that use Bison.
|
/external/qemu-pc-bios/bochs/ |
D | Makefile.in | 573 STANDALONE_LIBDIR=`pwd`/$(APP)/Contents/$(APP_PLATFORM)/lib 632 $(MKDIR) -p $(APP)/Contents 633 $(CP) -f $(MACOSX_STUFF)/Info.plist $(APP)/Contents 634 $(CP) -f $(MACOSX_STUFF_SRCDIR)/pbdevelopment.plist $(APP)/Contents 635 echo -n "APPL????" > $(APP)/Contents/PkgInfo 636 $(MKDIR) -p $(APP)/Contents/$(APP_PLATFORM) 637 $(CP) bochs $(APP)/Contents/$(APP_PLATFORM) 638 $(MKDIR) -p $(APP)/Contents/Resources 639 $(REZ) $(REZ_ARGS) $(MACOSX_STUFF_SRCDIR)/bochs.r -o $(APP)/Contents/Resources/bochs.rsrc 640 $(CP) -f $(MACOSX_STUFF_SRCDIR)/bochs-icn.icns $(APP)/Contents/Resources
|
/external/webkit/Tools/DumpRenderTree/qt/TestNetscapePlugin/ |
D | TestNetscapePlugin.pro | 15 QMAKE_BUNDLE_LOCATION += "Contents/MacOS"
|
/external/expat/win32/ |
D | MANIFEST.txt | 9 Directory Contents
|
/external/llvm/lib/MC/ |
D | MCAssembler.cpp | 871 const SmallVectorImpl<char> &Contents = DF->getContents(); in dump() local 872 for (unsigned i = 0, e = Contents.size(); i != e; ++i) { in dump() 874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF); in dump() 876 OS << "] (" << Contents.size() << " bytes)"; in dump()
|
/external/llvm/lib/Target/ARM/ |
D | ARMAsmPrinter.cpp | 105 SmallString<64> Contents; member in __anoneed5aa9f0111::ObjectAttributeEmitter 123 assert(Contents.size() == 0); in MaybeSwitchVendor() 128 Contents += Attribute; in EmitAttribute() 129 Contents += Value; in EmitAttribute() 133 Contents += Attribute; in EmitTextAttribute() 134 Contents += UppercaseString(String); in EmitTextAttribute() 135 Contents += 0; in EmitTextAttribute() 139 const size_t ContentsSize = Contents.size(); in Finish() 154 Streamer.EmitBytes(Contents, 0); in Finish() 156 Contents.clear(); in Finish()
|
/external/clang/tools/libclang/ |
D | CIndexer.cpp | 131 OS.write(unsaved_files[i].Contents, unsaved_files[i].Length); in RemapFiles()
|
/external/libvpx/ |
D | mainpage.dox | 3 \section main_contents Page Contents
|