/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
config.py | 59 sections = config.sections() 60 if 'distutils' in sections: 68 if 'pypi' in sections: 90 elif 'server-login' in sections:
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
config.py | 59 sections = config.sections() 60 if 'distutils' in sections: 68 if 'pypi' in sections: 90 elif 'server-login' in sections:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
config.py | 59 sections = config.sections() 60 if 'distutils' in sections: 68 if 'pypi' in sections: 90 elif 'server-login' in sections:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
config.py | 59 sections = config.sections() 60 if 'distutils' in sections: 68 if 'pypi' in sections: 90 elif 'server-login' in sections:
|
/cts/tests/tests/widget/src/android/widget/cts/ |
AlphabetIndexerTest.java | 47 Object[] sections = indexer.getSections(); local 48 assertTrue(sections instanceof String[]); 49 assertEquals(ALPHABET.length(), sections.length); 50 assertEquals(ALPHABET.charAt(0), ((String[]) sections)[0].charAt(0)); 51 assertEquals(ALPHABET.charAt(1), ((String[]) sections)[1].charAt(0)); 53 ((String[]) sections)[ALPHABET.length() - 2].charAt(0)); 55 ((String[]) sections)[ALPHABET.length() - 1].charAt(0));
|
/external/dbus/bus/ |
desktop-file.c | 49 BusDesktopFileSection *sections; member in struct:BusDesktopFile 128 bus_desktop_file_section_free (&desktop_file->sections[i]); 129 dbus_free (desktop_file->sections); 162 BusDesktopFileSection *sections; local 169 sections = dbus_realloc (desktop_file->sections, 171 if (sections == NULL) 174 desktop_file->sections = sections; 285 desktop_file->sections[n].section_name = name_copy [all...] |
/external/elfutils/tests/ |
run-strip-test.sh | 59 tempfiles testfile.sections 60 testrun ${abs_top_builddir}/src/readelf -S testfile.temp > testfile.sections || status=$? 61 fgrep ' .debug_' testfile.sections && status=1
|
/toolchain/binutils/binutils-2.25/binutils/ |
coffgrok.c | 136 head->sections = all; 138 for (idx = 0, section = abfd->sections; section; section = section->next, idx++) 155 head->sections[i].name = (char *) (section->name); 156 head->sections[i].code = section->flags & SEC_CODE; 157 head->sections[i].data = section->flags & SEC_DATA; 159 head->sections[i].data = 1; 160 head->sections[i].address = section->lma; 161 head->sections[i].size = bfd_get_section_size (section); 162 head->sections[i].number = idx; 163 head->sections[i].nrelocs = section->reloc_count [all...] |
/external/elfutils/libdwfl/ |
derelocate.c | 189 possible target sections we care about. */ 274 struct dwfl_relocation *sections = mod->reloc_info; local 276 if (idx >= sections->count) 280 *shndxp = elf_ndxscn (sections->refs[idx].scn); 282 return sections->refs[idx].name; 326 struct dwfl_relocation *sections = mod->reloc_info; local 328 /* The sections are sorted by address, so we can use binary search. */ 329 size_t l = 0, u = sections->count; 333 if (*addr < sections->refs[idx].start) 335 else if (*addr > sections->refs[idx].end [all...] |
/external/iw/ |
Android.mk | 11 sections.c 21 LOCAL_LDFLAGS := -Wl,--no-gc-sections
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
SectionedAlbumDataAdapter.java | 41 private int[] sections; field in class:SectionedAlbumDataAdapter 81 sections = new int[numSections]; 89 sections[numSections] = i; 94 for (int i = 0; i < sections.length; i++) { 95 sections[i] += i; 96 if (DEBUG) Log.i(TAG, i + ": " + sections[i]); 125 return mAlbumData.getCount() + sections.length; 201 return (Arrays.binarySearch(sections, position) >= 0); 205 int offset = Arrays.binarySearch(sections, position);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/ |
mix-1.s | 1 ! Check mixed-mode objects; different sections holding different ISA:s.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
flags1.d | 1 #name: --set-section-flags test 1 (sections) 10 # because the two sections are not merged into one segment. 21 Segment Sections...
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-h8300/ |
relax-7b.s | 14 table2: # no relax in sections other than text expected:
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
fill.d | 13 # m32c pads out code sections to 8 bytes. 15 # sh-pe pads out code sections to 16 bytes
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/ |
shmix-1.s | 1 ! Check mixed-mode objects; different sections holding different ISA:s.
|
/external/autotest/client/tools/ |
boottool | 219 my @sections; 224 $sections[$index]{'kernel'} = $2; 228 $sections[$index]{$key} = $1; 229 $sections[$index]{$key} =~ s/\"|\'//g if ($key eq 'args'); 235 if (!(defined $sections[0]{'default'})) { 236 $sections[0]{'default'} = '0'; 240 foreach my $index (1..$#sections) { 241 if ($sections[$index]{'title'} eq $sections[0]{'default'}) { 242 $sections[0]{'default'} = $index-1 [all...] |
/external/elfutils/lib/ |
Makefile.am | 45 xmalloc_CFLAGS = -ffunction-sections
|
/ndk/sources/cxx-stl/llvm-libc++/test/ |
Android.mk | 17 LOCAL_LDFLAGS := -Wl,-gc-sections
|
/toolchain/binutils/binutils-2.25/bfd/ |
elf-nacl.c | 37 so we have to look through the sections. */ 40 if (seg->sections[i]->flags & SEC_CODE) 55 if (seg->count == 0 || seg->sections[0]->lma % minpagesize < sizeof_headers) 59 if ((seg->sections[i]->flags & (SEC_CODE|SEC_READONLY)) != SEC_READONLY) 107 && seg->sections[0]->vma % bed->minpagesize == 0) 109 asection *lastsec = seg->sections[seg->count - 1]; 169 newseg->sections[newseg->count++] = sec; 328 && seg->sections[seg->count - 1]->owner == NULL) 334 asection *sec = seg->sections[seg->count - 1];
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/i386/ |
compressed-1b.d | 6 #name: strip on uncompressed debug sections
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/ |
readelf.s | 6 # On the normal MIPS systems, sections must be aligned to 16 byte 7 # boundaries. On IA64, text sections are aligned to 16 byte boundaries.
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/x86-64/ |
compressed-1b.d | 6 #name: strip on uncompressed debug sections
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/ |
section0.d | 4 # new sections created without atrributes.
|
section1.d | 4 # new sections created without atrributes.
|