HomeSort by relevance Sort by last modified time
    Searched refs:Contents (Results 1 - 25 of 36) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
  /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/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
download_file_manager.cc 37 TabContents* contents = tab_util::GetTabContentsByID(render_process_id, local
39 if (contents) {
40 Profile* profile = contents->profile();
191 std::vector<DownloadBuffer::Contents> contents; local
194 contents.swap(buffer->contents);
198 for (size_t i = 0; i < contents.size(); ++i) {
199 net::IOBuffer* data = contents[i].first;
200 const int data_len = contents[i].second
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 137 /// 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;
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.OffsetedInfo.Val.GV
    [all...]
ScheduleDAG.h 78 /// Contents - A union discriminated by the dependence kind.
87 } Contents;
107 : Dep(S, kind), Contents() {
115 Contents.Reg = Reg;
119 Contents.Reg = Reg;
126 : Dep(S, Order), Contents(), Latency(0), MinLatency(0) {
127 Contents.OrdKind = kind;
137 return Contents.Reg == Other.Contents.Reg;
139 return Contents.OrdKind == Other.Contents.OrdKind
    [all...]
MachineRegisterInfo.h 77 return MO->Contents.Reg.Next;
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 128 MO->Contents.Reg.Prev = MO;
129 MO->Contents.Reg.Next = 0;
136 MachineOperand *Last = Head->Contents.Reg.Prev;
139 Head->Contents.Reg.Prev = MO;
140 MO->Contents.Reg.Prev = Last;
146 MO->Contents.Reg.Next = Head;
150 MO->Contents.Reg.Next = 0;
151 Last->Contents.Reg.Next = MO;
163 MachineOperand *Next = MO->Contents.Reg.Next;
164 MachineOperand *Prev = MO->Contents.Reg.Prev
    [all...]
MachineInstr.cpp 123 Contents.ImmVal = ImmVal;
156 Contents.Reg.Prev = 0;
688 NewMO->Contents.Reg.Prev = 0;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/
packaging.properties 17 root.macosx.carbon.ppc.permissions.755=Eclipse.app/Contents/MacOS/eclipse
25 root.macosx.carbon.ppc.link=Eclipse.app/Contents/MacOS/eclipse,eclipse,../../../MacOS,Eclipse.app/Contents/Resources/Splash.app/Contents/MacOS
  /external/llvm/include/llvm/MC/
MCAssembler.h 217 SmallVector<char, 32> Contents;
228 virtual SmallVectorImpl<char> &getContents() { return Contents; }
229 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
267 SmallVector<char, 4> Contents;
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;
309 virtual SmallVectorImpl<char> &getContents() { return Contents; }
310 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
    [all...]
  /sdk/monitor/
monitor 39 app=${app}.app/Contents/MacOS/monitor
  /external/llvm/test/MC/ELF/
fde.s 4 # CHECK: Contents of section .debug_frame:
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 195 ArrayRef<uint8_t> &Contents,
202 if (error_code ec = Obj->getSectionContents(Section, Contents)) return ec;
265 ArrayRef<uint8_t> Contents;
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));
llvm-objdump.cpp 460 StringRef Contents;
463 if (error(si->getContents(Contents))) continue;
466 outs() << "Contents of section " << Name << ":\n";
469 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
476 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
477 << hexdigit(Contents[addr + i] & 0xF, true);
484 if (std::isprint(static_cast<unsigned char>(Contents[addr + i]) & 0xFF))
485 outs() << Contents[addr + i];
  /sdk/adtproductbuild/
Android.mk 92 # In addition, the root folder has a symlink to Eclipse.app/Contents/MacOS/eclipse. Since .zip files
105 mv $(4)/eclipse/eclipse.app/Contents/MacOS/eclipse.ini $(4)/eclipse/Eclipse.app/Contents/MacOS && \
108 chmod +x $(4)/eclipse/Eclipse.app/Contents/MacOS/eclipse && \
110 $(4)/eclipse/Eclipse.app/Contents/Resources && \
111 sed -i -e 's/Eclipse.icns/adt.icns/g' $(4)/eclipse/Eclipse.app/Contents/MacOS/eclipse.ini && \
112 sed -i -e 's/Eclipse.icns/adt.icns/g' $(4)/eclipse/Eclipse.app/Contents/Info.plist ; \
115 $(4)/eclipse/$(if $(filter macosx.cocoa,$(1)),Eclipse.app/Contents/MacOS/)eclipse.ini && \
117 $(4)/eclipse/$(if $(filter macosx.cocoa,$(1)),Eclipse.app/Contents/MacOS/)eclipse.ini && \
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 145 } Contents;
149 CountValue(unsigned r, bool neg) : Kind(CV_Register), Contents(r),
151 explicit CountValue(int64_t i) : Kind(CV_Immediate), Contents(i),
160 return Contents.RegNum;
163 Contents.RegNum = Val;
168 return -Contents.ImmVal;
170 return Contents.ImmVal;
173 Contents.ImmVal = Val;
  /external/llvm/lib/MC/
MCAssembler.cpp 504 /// \brief Write the contents of a fragment to the given object writer. Expects
667 // Check that contents are only things legal inside a virtual section.
673 // Check that we aren't trying to write a non-zero contents (or fixups)
675 // directives to fill the contents of virtual sections.
    [all...]
  /external/clang/tools/libclang/
CIndexer.cpp 118 // Write the contents of this unsaved file into the temporary file.
129 OS.write(unsaved_files[i].Contents, unsaved_files[i].Length);
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 240 } Contents;
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.ImmVal;
    [all...]
  /external/chromium/chrome/browser/autocomplete/
keyword_provider_unittest.cc 154 TEST_F(KeywordProviderTest, Contents) {
156 // No query input -> substitute "<enter query>" into contents.
163 // and contents are not escaped or unescaped.
180 &AutocompleteMatch::contents);
  /development/ide/xcode/ports/
skia_mac.cp 22 // /Users/caryclark/android/device/build/ide/xcode/animatorTest/build/Debug/animatorTest.app/Contents/MacOS/animatorTest
  /ndk/build/tools/
common-build-host-funcs.sh 525 _bh_check_darwin_sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$DARWIN_SDK_SUBDIR $DARWIN_MIN_VERSION
529 _bh_check_darwin_sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk $DARWIN_MIN_VERSION
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 118 SmallVector<AttributeItemType, 64> Contents;
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();
    [all...]
  /system/media/camera/docs/
html.mako 106 <h2>Table of Contents</h2>

Completed in 761 milliseconds

1 2