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 136 /// SmallContents - This really should be part of the Contents union, but
142 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
149 /// Contents union - This contains the payload for the various operand types.
177 } Contents;
401 return Contents.ImmVal;
406 return Contents.CI;
411 return Contents.CFP;
416 return Contents.MBB;
422 return Contents.OffsetedInfo.Val.Index;
427 return Contents.OffsetedInfo.Val.GV
    [all...]
ScheduleDAG.h 60 /// Contents - A union discriminated by the dependence kind.
82 } Contents;
101 : Dep(S, kind), Contents(), Latency(latency), MinLatency(latency) {
111 Contents.Reg = Reg;
115 Contents.Order.isNormalMemory = isNormalMemory;
116 Contents.Order.isMustAlias = isMustAlias;
117 Contents.Order.isArtificial = isArtificial;
129 return Contents.Reg == Other.Contents.Reg;
131 return Contents.Order.isNormalMemory =
    [all...]
MachineRegisterInfo.h 77 return MO->Contents.Reg.Next;
  /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/lib/CodeGen/
MachineRegisterInfo.cpp 133 MO->Contents.Reg.Prev = MO;
134 MO->Contents.Reg.Next = 0;
141 MachineOperand *Last = Head->Contents.Reg.Prev;
144 Head->Contents.Reg.Prev = MO;
145 MO->Contents.Reg.Prev = Last;
151 MO->Contents.Reg.Next = Head;
155 MO->Contents.Reg.Next = 0;
156 Last->Contents.Reg.Next = MO;
168 MachineOperand *Next = MO->Contents.Reg.Next;
169 MachineOperand *Prev = MO->Contents.Reg.Prev
    [all...]
MachineInstr.cpp 124 Contents.ImmVal = ImmVal;
157 Contents.Reg.Prev = 0;
721 Operands[OpNo].Contents.Reg.Prev = 0;
    [all...]
  /sdk/monitor/
monitor 39 app=${app}.app/Contents/MacOS/monitor
  /tools/motodev/src/plugins/db.core/
plugin.properties 15 browse_table_contents_action=&Browse Table Contents...
51 command_browse_table_contents_name=Browse Table Contents...
52 command_browse_table_contents_description=Browse Table Contents using an instance of TableNode
79 menu_browse_table_contents=Browse Table Contents...
  /external/llvm/test/MC/ELF/
fde.s 4 # CHECK: Contents of section .debug_frame:
  /external/llvm/include/llvm/MC/
MCAssembler.h 117 SmallString<32> Contents;
132 SmallString<32> &getContents() { return Contents; }
133 const SmallString<32> &getContents() const { return Contents; }
354 SmallString<8> Contents;
358 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
367 SmallString<8> &getContents() { return Contents; }
368 const SmallString<8> &getContents() const { return Contents; }
389 SmallString<8> Contents;
395 LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); }
404 SmallString<8> &getContents() { return Contents; }
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 126 } Contents;
130 CountValue(unsigned r, bool neg) : Kind(CV_Register), Contents(r),
132 explicit CountValue(int64_t i) : Kind(CV_Immediate), Contents(i),
141 return Contents.RegNum;
144 Contents.RegNum = Val;
149 return -Contents.ImmVal;
151 return Contents.ImmVal;
154 Contents.ImmVal = Val;
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 139 } Contents;
143 CountValue(unsigned r, bool neg) : Kind(CV_Register), Contents(r),
145 explicit CountValue(int64_t i) : Kind(CV_Immediate), Contents(i),
154 return Contents.RegNum;
157 Contents.RegNum = Val;
162 return -Contents.ImmVal;
164 return Contents.ImmVal;
167 Contents.ImmVal = Val;
  /sdk/adtproductbuild/
Makefile 11 if [[ $(1) == "macosx.cocoa" ]]; then eclipseini=eclipse.app/Contents/MacOS/eclipse.ini; else eclipseini=eclipse.ini; fi && \
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 425 StringRef Contents;
428 if (error(si->getContents(Contents))) continue;
431 outs() << "Contents of section " << Name << ":\n";
434 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
441 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
442 << hexdigit(Contents[addr + i] & 0xF, true);
449 if (std::isprint(Contents[addr + i] & 0xFF))
450 outs() << Contents[addr + i];
  /external/clang/tools/libclang/
CIndexer.cpp 120 // Write the contents of this unsaved file into the temporary file.
131 OS.write(unsaved_files[i].Contents, unsaved_files[i].Length);
  /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
  /external/llvm/lib/MC/
MCAssembler.cpp 507 // Check that contents are only things legal inside a virtual section.
513 // Check that we aren't trying to write a non-zero contents (or fixups)
515 // directives to fill the contents of virtual sections.
872 OS << " Contents:[";
873 const SmallVectorImpl<char> &Contents = DF->getContents();
874 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
876 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
878 OS << "] (" << Contents.size() << " bytes)";
    [all...]
  /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
  /tools/motodev/src/plugins/android/
plugin.properties 45 command.name.helponline = Help Contents
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 114 SmallVector<AttributeItemType, 64> Contents;
146 assert(Contents.size() == 0);
158 Contents.push_back(attr);
172 Contents.push_back(attr);
191 for (unsigned int i=0; i<Contents.size(); ++i) {
192 AttributeItemType item = Contents[i];
206 Contents.clear();
    [all...]

Completed in 1068 milliseconds

1 2