/external/libunwind/src/arm/ |
siglongjmp.S | 11 .section .note.GNU-stack,"",%progbits
|
/external/llvm/test/MC/AArch64/ |
inst-directive.s | 6 .section .inst.aarch64_inst 20 // CHECK-OBJ: Section {
|
ldr-pseudo-diagnostics.s | 4 .section a, "ax", @progbits
|
/external/llvm/test/MC/AsmParser/ |
directive_darwin_section.s | 3 # CHECK: .section __DWARF,__debug_frame,regular,debug 4 .section __DWARF,__debug_frame,regular,debug
|
section_names.s | 3 .section .nobits 5 .section .nobits2 7 .section .nobitsfoo 9 .section .init_array 11 .section .init_array2 13 .section .init_arrayfoo 15 .section .fini_array 17 .section .fini_array2 19 .section .fini_arrayfoo 21 .section .preinit_arra [all...] |
/external/llvm/test/MC/ELF/ |
debug-loc.s | 3 // Test that we don't regress on the size of the line info section. We used 10 // CHECK: Section { 25 .section .debug_line,"",@progbits
|
/external/llvm/test/MC/MachO/ |
symbol-diff.s | 1 // RUN: llvm-mc -triple x86_64-apple-darwin10 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s 4 .section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support 29 // CHECK-NEXT: # Section 0 46 // CHECK-NEXT: # Section 1
|
indirect-symbols.s | 1 // RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s 8 .section __IMPORT,__jump_table,symbol_stubs,pure_instructions+self_modifying_code,5 15 .section __IMPORT,__pointers,non_lazy_symbol_pointers 43 // CHECK: # Section 0 59 // CHECK: # Section 1 75 // CHECK: # Section 2
|
/system/bt/btif/src/ |
btif_config.c | 157 bool btif_config_has_section(const char *section) { 159 assert(section != NULL); 162 bool ret = config_has_section(config, section); 168 bool btif_config_exist(const char *section, const char *key) { 170 assert(section != NULL); 174 bool ret = config_has_key(config, section, key); 180 bool btif_config_get_int(const char *section, const char *key, int *value) { 182 assert(section != NULL); 187 bool ret = config_has_key(config, section, key); 189 *value = config_get_int(config, section, key, *value) 400 const char *section = config_section_name(snode); local [all...] |
/external/llvm/bindings/python/llvm/tests/ |
test_object.py | 4 from ..object import Section 19 for section in o.get_sections(): 21 assert isinstance(section, Section) 22 assert isinstance(section.name, str) 23 assert isinstance(section.size, long) 24 assert isinstance(section.contents, str) 25 assert isinstance(section.address, long) 26 assert len(section.contents) == section.siz [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
SectionedListAdapter.java | 30 * Adapter that combines multiple adapters as sections, asking each section to 69 final SectionAdapter section = mSections.get(i); local 70 final int sectionSize = section.getCount() + 1; 72 // Check if position inside this section 74 return section; 76 return section.getItem(position - 1); 79 // Otherwise jump into next section 94 final SectionAdapter section = mSections.get(i); local 95 final int sectionSize = section.getCount() + 1; 97 // Check if position inside this section 119 final SectionAdapter section = mSections.get(i); local 140 final SectionAdapter section = mSections.get(i); local [all...] |
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
module.hpp | 38 struct section { struct in struct:clover::module 47 section(resource_id id, enum type type, size_t size, function in struct:clover::module::section 50 section() : id(0), type(text), size(0), data() { } function in struct:clover::module::section 79 symbol(const clover::compat::vector<char> &name, resource_id section, 81 name(name), section(section), offset(offset), args(args) { } 82 symbol() : name(), section(0), offset(0), args() { } 85 resource_id section; member in struct:clover::module::symbol 97 /// Look up a section by type. Throws module::noent_error if not 99 const section &sec(typename section::type type) const [all...] |
/system/bt/osi/src/ |
config.c | 55 static section_t *section_find(const config_t *config, const char *section); 59 static entry_t *entry_find(const config_t *config, const char *section, const char *key); 107 bool config_has_section(const config_t *config, const char *section) { 109 assert(section != NULL); 111 return (section_find(config, section) != NULL); 114 bool config_has_key(const config_t *config, const char *section, const char *key) { 116 assert(section != NULL); 119 return (entry_find(config, section, key) != NULL); 122 int config_get_int(const config_t *config, const char *section, const char *key, int def_value) { 124 assert(section != NULL) 245 const section_t *section = (const section_t *)list_node(lnode); local 270 const section_t *section = (const section_t *)list_node(node); local 327 char section[1024]; local 360 section_t *section = osi_calloc(sizeof(section_t)); local [all...] |
/bionic/libc/arch-common/bionic/ |
crtend_so.S | 30 .section .note.GNU-stack,"",%progbits 33 .section .eh_frame,"a",@progbits
|
/external/clang/test/OpenMP/ |
parallel_sections_codegen.cpp | 57 #pragma omp section 62 #pragma omp section
|
/external/elfutils/src/tests/ |
run-dwfl-addr-sect.sh | 23 address 0x64 => module "" section 4 + 0 24 address 0x8 => module "" section 1 + 0x8 25 address 0x98 => module "" section 7 + 0 29 address 0x1 => module "" section 1 + 0x1
|
newscn.c | 34 Elf_Scn *section; local 58 section = elf_newscn (elf); 59 section = elf_nextscn (elf, section); 60 assert (section == NULL);
|
/development/ndk/platforms/android-9/arch-mips/src/ |
crtbegin.c | 44 __attribute__ ((section (".preinit_array"))) 47 __attribute__ ((section (".init_array"))) 50 __attribute__ ((section (".fini_array"))) 53 __attribute__ ((section (".ctors"))) 56 __attribute__ ((section (".dtors")))
|
/libcore/dex/src/main/java/com/android/dex/ |
TableOfContents.java | 32 public final Section header = new Section(0x0000); 33 public final Section stringIds = new Section(0x0001); 34 public final Section typeIds = new Section(0x0002); 35 public final Section protoIds = new Section(0x0003); 36 public final Section fieldIds = new Section(0x0004) 121 Section section = getSection(type); local 145 Section section = sections[i]; local [all...] |
/external/google-breakpad/src/common/ |
test_assembler_unittest.cc | 42 using google_breakpad::test_assembler::Section; 723 Section s; 727 Section s(kBigEndian); 730 // A fixture class for TestAssembler::Section tests. 733 Section section; member in class:SectionFixture 766 section.Append(data, sizeof(data)); 767 ASSERT_TRUE(section.GetContents(&contents)); 773 section.Append(data, sizeof(data)); 774 section.Append(data, sizeof(data)) [all...] |
/frameworks/compile/mclinker/lib/LD/ |
ELFObjectReader.cpp | 92 /// readHeader - read section header and create LDSections. 110 LDContext::sect_iterator section, sectEnd = pInput.context()->sectEnd(); local 111 for (section = pInput.context()->sectBegin(); section != sectEnd; ++section) { 112 // ignore the section if the LDSection* in input context is NULL 113 if (*section == NULL) 116 switch ((*section)->kind()) { 119 assert((*section)->getLink() != NULL); 121 pInput, *(*section)->getLink(), (*section)->getInfo()) [all...] |
/external/clang/test/CodeGen/ |
attributes.c | 7 // CHECK: @t13 = global %struct.s0 zeroinitializer, section "SECT" 9 struct s0 t13 __attribute__((section("SECT"))) = { 0 }; 11 // CHECK: @t14.x = internal global i32 0, section "SECT" 13 static int x __attribute__((section("SECT"))) = 0; 26 // CHECK: @t12 = global i32 0, section "SECT" 27 int t12 __attribute__((section("SECT"))); 59 // CHECK: define void @t10() [[NUW]] section "SECT" { 60 void t10(void) __attribute__((section("SECT"))); 62 // CHECK: define void @t11() [[NUW]] section "SECT" { 63 void __attribute__((section("SECT"))) t11(void) { [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MapItem.java | 37 /** {@code non-null;} section this instance covers */ 38 private final Section section; field in class:MapItem 61 * given map section. 64 * @param mapSection {@code non-null;} the section that the resulting map 67 public static void addMap(Section[] sections, 80 for (Section section : sections) { 86 for (Item item : section.items()) { 90 items.add(new MapItem(currentType, section, [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MapItem.java | 36 /** {@code non-null;} section this instance covers */ 37 private final Section section; field in class:MapItem 60 * given map section. 63 * @param mapSection {@code non-null;} the section that the resulting map 66 public static void addMap(Section[] sections, 79 for (Section section : sections) { 85 for (Item item : section.items()) { 89 items.add(new MapItem(currentType, section, [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
MapItem.java | 37 /** {@code non-null;} section this instance covers */ 38 private final Section section; field in class:MapItem 61 * given map section. 64 * @param mapSection {@code non-null;} the section that the resulting map 67 public static void addMap(Section[] sections, 80 for (Section section : sections) { 86 for (Item item : section.items()) { 90 items.add(new MapItem(currentType, section, [all...] |