HomeSort by relevance Sort by last modified time
    Searched defs:Contents (Results 1 - 10 of 10) sorted by null

  /external/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
  /external/chromium/chrome/browser/download/
download_types.h 24 // is synchronized via the lock. Each entry in 'contents' represents one data
31 typedef std::pair<net::IOBuffer*, int> Contents;
32 std::vector<Contents> contents; member in struct:DownloadBuffer
  /external/llvm/include/llvm/ADT/
InMemoryStruct.h 37 value_type Contents;
43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {}
48 if (Value.Target != &Value.Contents) {
51 Target = &Contents;
52 Contents = Value.Contents;
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 384 StringRef Contents;
387 if (error(si->getContents(Contents))) continue;
390 outs() << "Contents of section " << Name << ":\n";
393 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
400 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
401 << hexdigit(Contents[addr + i] & 0xF, true);
408 if (std::isprint(Contents[addr + i] & 0xFF))
409 outs() << Contents[addr + i];
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 114 /// SmallContents - This really should be part of the Contents union, but
120 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
127 /// Contents union - This contains the payload for the various operand types.
154 } Contents;
284 return Contents.Reg.Next;
362 return Contents.ImmVal;
367 return Contents.CI;
372 return Contents.CFP;
377 return Contents.MBB;
383 return Contents.OffsetedInfo.Val.Index
    [all...]
ScheduleDAG.h 59 /// Contents - A union discriminated by the dependence kind.
81 } Contents;
98 : Dep(S, kind), Contents(), Latency(latency) {
108 Contents.Reg = Reg;
112 Contents.Order.isNormalMemory = isNormalMemory;
113 Contents.Order.isMustAlias = isMustAlias;
114 Contents.Order.isArtificial = isArtificial;
125 return Contents.Reg == Other.Contents.Reg;
127 return Contents.Order.isNormalMemory =
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 502 // Check that contents are only things legal inside a virtual section.
509 // Check that we aren't trying to write a non-zero contents (or fixups)
511 // directives to fill the contents of virtual sections.
870 OS << " Contents:[";
871 const SmallVectorImpl<char> &Contents = DF->getContents();
872 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
874 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
876 OS << "] (" << Contents.size() << " bytes)";
  /external/llvm/include/llvm/MC/
MCAssembler.h 109 SmallString<32> Contents;
124 SmallString<32> &getContents() { return Contents; }
125 const SmallString<32> &getContents() const { return Contents; }
336 SmallString<8> Contents;
340 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
349 SmallString<8> &getContents() { return Contents; }
350 const SmallString<8> &getContents() const { return Contents; }
369 SmallString<8> Contents;
375 LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); }
384 SmallString<8> &getContents() { return Contents; }
    [all...]
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 119 SmallVector<AttributeItemType, 64> Contents;
151 assert(Contents.size() == 0);
163 Contents.push_back(attr);
177 Contents.push_back(attr);
196 for (unsigned int i=0; i<Contents.size(); ++i) {
197 AttributeItemType item = Contents[i];
212 Contents.clear();
    [all...]
  /external/clang/include/clang-c/
Index.h 75 * \brief Provides the contents of a file that has not yet been saved to disk.
78 * system along with the current contents of that file that have not
83 * \brief The file whose contents have not yet been saved.
90 * \brief A buffer containing the unsaved contents of this file.
92 const char *Contents;
95 * \brief The length of the unsaved contents of this buffer.
729 * Fix-its are described in terms of a source range whose contents
743 * \param ReplacementRange The source range whose contents will be
763 * translation units from files, either by parsing the contents of the files or
810 * but may be required for code completion, including the contents o
    [all...]

Completed in 496 milliseconds