/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyld.cpp | 126 unsigned SectionID = findOrEmitSection(*obj, *si, IsCode, LocalSections); 127 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset); 130 << " SID: " << SectionID 132 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset); 148 unsigned SectionID = 0; 156 // If it's the first relocation in this section, find its SectionID 158 SectionID = 160 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n"); 164 processRelocationRef(SectionID, *i, *obj, LocalSections, LocalSymbols, 177 unsigned SectionID = Sections.size() [all...] |
RuntimeDyldImpl.h | 79 /// SectionID - the section this relocation points to. 80 unsigned SectionID; 99 : SectionID(id), Offset(offset), RelType(type), Addend(addend), 104 : SectionID(id), Offset(offset), RelType(type), Addend(addend), 110 unsigned SectionID; 113 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {} 129 // referenced in the code by means of their index in this list - SectionID. 133 // Keep a map of sections from object file to the SectionID which 138 // symbol name to a (SectionID, offset in section) pair. 154 // Relocations to sections already loaded. Indexed by SectionID which is th [all...] |
RuntimeDyldELF.cpp | 593 Rel.SectionID = findOrEmitSection(Obj, (*tsi), true, LocalSections); 740 const SectionEntry &Section = Sections[RE.SectionID]; 784 void RuntimeDyldELF::processRelocationRef(unsigned SectionID, 813 Value.SectionID = lsi->second.first; 821 Value.SectionID = gsi->second.first; 837 Value.SectionID = findOrEmitSection(Obj, 858 DEBUG(dbgs() << "\t\tSectionID: " << SectionID 866 SectionEntry &Section = Sections[SectionID]; 881 RelocationEntry REmovz_g3(SectionID [all...] |
RuntimeDyldMachO.cpp | 89 const SectionEntry &Section = Sections[RE.SectionID]; 279 void RuntimeDyldMachO::processRelocationRef(unsigned SectionID, 291 SectionEntry &Section = Sections[SectionID]; 311 Value.SectionID = lsi->second.first; 317 Value.SectionID = gsi->second.first; 326 Value.SectionID = findOrEmitSection(Obj, Sec, true, ObjSectionToID); 342 RelocationEntry RE(SectionID, Section.StubOffset, 348 addRelocationForSection(RE, Value.SectionID); 369 RelocationEntry RE(SectionID, StubTargetAddr - Section.Address, 374 addRelocationForSection(RE, Value.SectionID); [all...] |
RuntimeDyldELF.h | 91 virtual void processRelocationRef(unsigned SectionID,
|
RuntimeDyldMachO.h | 61 virtual void processRelocationRef(unsigned SectionID,
|
/external/llvm/include/llvm/ExecutionEngine/ |
RTDyldMemoryManager.h | 38 /// executable code. The SectionID is a unique identifier assigned by the JIT 42 unsigned SectionID) = 0; 45 /// The SectionID is a unique identifier assigned by the JIT engine, and 48 unsigned SectionID, bool IsReadOnly) = 0;
|
SectionMemoryManager.h | 52 unsigned SectionID); 60 unsigned SectionID,
|
RuntimeDyld.h | 38 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
|
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngineBindings.cpp | 344 unsigned SectionID); 347 unsigned SectionID, LLVMBool IsReadOnly); 359 unsigned SectionID); 362 unsigned SectionID, 391 uintptr_t Size, unsigned Alignment, unsigned SectionID) { 392 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID); 396 uintptr_t Size, unsigned Alignment, unsigned SectionID, bool isReadOnly) { 397 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID, 420 unsigned SectionID), 423 unsigned SectionID, LLVMBool IsReadOnly) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XMLViewer.js | 390 function expandFunction(sectionId) 394 document.querySelector('#' + sectionId + ' > .expanded').className = 'expanded'; 395 document.querySelector('#' + sectionId + ' > .collapsed').className = 'collapsed hidden'; 399 function collapseFunction(sectionId) 403 document.querySelector('#' + sectionId + ' > .expanded').className = 'expanded hidden'; 404 document.querySelector('#' + sectionId + ' > .collapsed').className = 'collapsed'; 412 var sectionId = 'collapsible' + i; 413 sections[i].id = sectionId; 415 var expandedPart = sections[i].querySelector('#' + sectionId + ' > .expanded'); 417 collapseButton.onclick = collapseFunction(sectionId); [all...] |
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITCAPITest.cpp | 31 unsigned sectionID) { 34 size, alignment, sectionID); 39 unsigned sectionID, 42 size, alignment, sectionID, isReadOnly);
|
/external/llvm/tools/lli/ |
RecordingMemoryManager.h | 53 unsigned SectionID); 56 unsigned SectionID, bool IsReadOnly);
|
RecordingMemoryManager.cpp | 30 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { 42 unsigned SectionID, bool IsReadOnly) {
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
PinnedHeaderListDemoActivity.java | 124 final int sectionId = i; 129 adapter.changeCursor(sectionId, cursor);
|
/external/llvm/tools/llvm-rtdyld/ |
llvm-rtdyld.cpp | 63 unsigned SectionID); 65 unsigned SectionID, bool IsReadOnly); 83 unsigned SectionID) { 91 unsigned SectionID,
|
/external/chromium/chrome/browser/resources/ |
new_new_tab.js | 42 function getSectionCloseButton(sectionId) { 43 return document.querySelector('#' + sectionId + ' .section-close-button'); 46 function getSectionMenuButton(sectionId) { 47 return $(sectionId + '-button'); 50 function getSectionMenuButtonTextId(sectionId) { 51 return sectionId.replace(/-/g, ''); 54 function setSectionMenuMode(sectionId, section, menuModeEnabled, menuModeMask) { 55 var el = $(sectionId); 94 function addClosedMenuFooter(menu, sectionId, mask, opt_section) { 104 localStrings.getString(getSectionMenuButtonTextId(sectionId)); [all...] |
/external/llvm/include/llvm-c/ |
ExecutionEngine.h | 189 unsigned SectionID), 192 unsigned SectionID, LLVMBool IsReadOnly),
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
SectionMemoryManager.cpp | 23 unsigned SectionID, 32 unsigned SectionID) {
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
JITTest.cpp | 139 unsigned SectionID, bool IsReadOnly) { 140 return Base->allocateDataSection(Size, Alignment, SectionID, IsReadOnly); 143 unsigned SectionID) { 144 return Base->allocateCodeSection(Size, Alignment, SectionID);
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITMemoryManager.cpp | 467 unsigned SectionID) { 513 unsigned SectionID, bool IsReadOnly) { [all...] |
/frameworks/base/docs/html/reference/com/google/android/gms/ |
R.attr.html | 1021 <td class="jd-linkcol"><a href="/reference/com/google/android/gms/R.attr.html#sectionId">sectionId</a></td> [all...] |
/frameworks/base/docs/html/about/versions/ |
kitkat.jd | 12 sectionId = $(hashy).closest(".version-section").attr("id"); 13 link = $("#title-tabs a[href$="+sectionId+"]"); [all...] |
jelly-bean.jd | 20 sectionId = $(hashy).closest(".version-section").attr("id"); 21 link = $("#title-tabs a[href$="+sectionId+"]"); [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/resources/ |
final-url-en | [all...] |