Searched defs:Contents (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/leveldatabase/src/db/
H A Dwrite_batch_internal.h31 static Slice Contents(const WriteBatch* batch) { function in class:leveldb::WriteBatchInternal
H A Ddb_test.cc312 std::string Contents() { function in class:leveldb::DBTest
1320 ASSERT_EQ("(a->v)", Contents());
1322 ASSERT_EQ("(a->v)", Contents());
1346 ASSERT_EQ("(->)(c->cv)", Contents());
1348 ASSERT_EQ("(->)(c->cv)", Contents());
/external/clang/test/CodeGenCXX/
H A D2010-03-09-AnonAggregate.cpp8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents; member in class:MO
/external/chromium/chrome/browser/download/
H A Ddownload_types.h31 typedef std::pair<net::IOBuffer*, int> Contents; typedef in struct:DownloadBuffer
32 std::vector<Contents> contents;
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp195 ArrayRef<uint8_t> &Contents,
202 if (error_code ec = Obj->getSectionContents(Section, Contents)) return ec;
265 ArrayRef<uint8_t> Contents; local
266 if (error(Obj->getSectionContents(Pdata, Contents))) continue;
267 if (Contents.empty()) continue;
270 reinterpret_cast<const RuntimeFunction *>(Contents.data()),
271 Contents.size() / sizeof(RuntimeFunction));
192 getSectionContents(const COFFObjectFile *Obj, const std::vector<RelocationRef> &Rels, uint64_t Offset, ArrayRef<uint8_t> &Contents, uint64_t &Addr) argument
H A Dllvm-objdump.cpp579 StringRef Contents; local
583 if (error(si->getContents(Contents))) continue;
587 outs() << "Contents of section " << Name << ":\n";
591 BaseAddr + Contents.size());
596 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
603 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
604 << hexdigit(Contents[addr + i] & 0xF, true);
611 if (std::isprint(static_cast<unsigned char>(Contents[addr + i]) & 0xFF))
612 outs() << Contents[addr + i];
/external/llvm/lib/MC/
H A DMCObjectDisassembler.cpp62 StringRef Contents; SI->getContents(Contents); local
63 StringRefMemoryObject memoryObject(Contents);
66 if (Contents.size() != SecSize || !SecSize)
90 Data->addData(Contents[Index]);
H A DMCObjectSymbolizer.cpp50 StringRef Contents; local
51 S.getContents(Contents);
52 Contents = Contents.substr(Addr - SAddr);
54 << Contents.substr(0, Contents.find_first_of(0));
H A DMCAssembler.cpp1058 OS << " Contents:[";
1059 const SmallVectorImpl<char> &Contents = DF->getContents(); local
1060 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
1062 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
1064 OS << "] (" << Contents.size() << " bytes)";
1082 OS << " Contents:[";
1083 const SmallVectorImpl<char> &Contents = CEIF->getContents(); local
1084 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
1086 OS << hexdigit((Contents[
[all...]
/external/chromium_org/chrome/browser/managed_mode/
H A Dmanaged_mode_url_filter.cc24 struct ManagedModeURLFilter::Contents { struct in class:ManagedModeURLFilter
45 // a new ManagedModeURLFilter::Contents.
60 // Finalizes construction of the ManagedModeURLFilter::Contents and returns
62 scoped_ptr<ManagedModeURLFilter::Contents> Build();
65 scoped_ptr<ManagedModeURLFilter::Contents> contents_;
71 : contents_(new ManagedModeURLFilter::Contents()),
135 scoped_ptr<ManagedModeURLFilter::Contents> FilterBuilder::Build() {
141 scoped_ptr<ManagedModeURLFilter::Contents> CreateWhitelistFromPatterns(
155 scoped_ptr<ManagedModeURLFilter::Contents> LoadWhitelistsOnBlockingPoolThread(
172 contents_(new Contents()) {
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h137 /// SmallContents - This really should be part of the Contents union, but
143 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
150 /// Contents union - This contains the payload for the various operand types.
178 } Contents; member in class:llvm::MachineOperand
404 return Contents.ImmVal;
409 return Contents.CI;
414 return Contents.CFP;
419 return Contents.MBB;
425 return Contents.OffsetedInfo.Val.Index;
430 return Contents
[all...]
H A DScheduleDAG.h78 /// Contents - A union discriminated by the dependence kind.
87 } Contents; member in class:llvm::SDep
102 : Dep(S, kind), Contents() {
110 Contents.Reg = Reg;
114 Contents.Reg = Reg;
120 : Dep(S, Order), Contents(), Latency(0) {
121 Contents.OrdKind = kind;
131 return Contents.Reg == Other.Contents.Reg;
133 return Contents
[all...]
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_strip_model.cc53 typedef std::vector<WebContents*> Contents; typedef in class:__anon6270::CloseTracker
55 explicit CloseTracker(const Contents& contents);
70 Contents contents_;
77 CloseTracker::CloseTracker(const Contents& contents)
103 Contents::iterator i =
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp84 ArrayRef<uint8_t> &Contents,
504 ArrayRef<uint8_t> &Contents, uint64_t &Addr) {
513 if (error_code EC = Obj->getSectionContents(Section, Contents))
763 StringRef Contents; local
769 if (error(SecI->getContents(Contents))) return;
955 ArrayRef<uint8_t> Contents; local
956 if (error(Obj->getSectionContents(PData, Contents)) ||
957 Contents.empty())
961 reinterpret_cast<const RuntimeFunction *>(Contents.data()),
962 Contents
502 getSectionContents( const std::vector<RelocationRef> &Rels, uint64_t Offset, ArrayRef<uint8_t> &Contents, uint64_t &Addr) argument
[all...]
/external/llvm/include/llvm/MC/
H A DMCAssembler.h217 SmallVector<char, 32> Contents; member in class:llvm::MCDataFragment
228 virtual SmallVectorImpl<char> &getContents() { return Contents; }
229 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
267 SmallVector<char, 4> Contents; member in class:llvm::MCCompactEncodedInstFragment
278 virtual SmallVectorImpl<char> &getContents() { return Contents; }
279 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
298 /// Contents - Binary data for the currently encoded instruction.
299 SmallVector<char, 8> Contents; member in class:llvm::MCRelaxableFragment
309 virtual SmallVectorImpl<char> &getContents() { return Contents; }
310 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
460 SmallString<8> Contents; member in class:llvm::MCLEBFragment
494 SmallString<8> Contents; member in class:llvm::MCDwarfLineAddrFragment
526 SmallString<8> Contents; member in class:llvm::MCDwarfCallFrameFragment
[all...]
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp118 SmallVector<AttributeItemType, 64> Contents; member in class:__anon21347::ObjectAttributeEmitter
150 assert(Contents.size() == 0);
162 Contents.push_back(attr);
176 Contents.push_back(attr);
195 for (unsigned int i=0; i<Contents.size(); ++i) {
196 AttributeItemType item = Contents[i];
210 Contents.clear();
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp240 } Contents; member in class:__anon21395::CountValue
246 Contents.R.Reg = v;
247 Contents.R.Sub = u;
249 Contents.ImmVal = v;
257 return Contents.R.Reg;
261 return Contents.R.Sub;
265 return Contents.ImmVal;
270 if (isReg()) { OS << PrintReg(Contents.R.Reg, TRI, Contents.R.Sub); }
271 if (isImm()) { OS << Contents
[all...]
/external/chromium_org/v8/include/
H A Dv8.h2478 * The Data pointer of ArrayBuffer::Contents is always allocated with
2483 class V8_EXPORT Contents { // NOLINT class in class:v8::ArrayBuffer
2485 Contents() : data_(NULL), byte_length_(0) {} function in class:v8::ArrayBuffer::Contents
2535 * and byte length are returned as |Contents| structure. After ArrayBuffer
2542 Contents Externalize();
/external/clang/include/clang-c/
H A DIndex.h112 const char *Contents; member in struct:CXUnsavedFile

Completed in 1695 milliseconds