HomeSort by relevance Sort by last modified time
    Searched defs:sections (Results 1 - 25 of 262) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/autotest/client/site_tests/webstore_SanityTest/
webstore_SanityTest.py 23 sections = ['Featured', 'More recommendations'] variable in class:webstore_SanityTest
30 for section in self.sections:
  /external/swiftshader/src/Common/
Configurator.hpp 61 std::vector<Section> sections; member in class:sw::Configurator
  /system/bt/osi/include/
config.h 11 // - Multiple sections with the same name will be merged as if they were in
13 // - Empty sections with no key/value pairs will be treated as if they do
15 // empty sections.
39 std::list<section_t> sections; member in struct:config_t
52 // Clones |src|, including all of it's sections, keys, and values.
  /external/libxml2/doc/examples/
index.py 18 sections = {} variable
94 global sections
137 if sections.has_key(section):
138 sections[section].append(filename)
140 sections[section] = [filename]
203 global sections
205 output.write(" <sections>\n")
206 keys = sections.keys()
210 info = sections[section]
216 output.write(" </sections>\n"
    [all...]
  /frameworks/base/libs/incident/include/android/os/
IncidentReportArgs.h 57 inline const set<int>& sections() const { return mSections; } function in class:android::os::IncidentReportArgs
  /cts/tests/tests/widget/src/android/widget/cts/
AlphabetIndexerTest.java 56 Object[] sections = indexer.getSections(); local
57 assertTrue(sections instanceof String[]);
58 assertEquals(ALPHABET.length(), sections.length);
59 assertEquals(ALPHABET.charAt(0), ((String[]) sections)[0].charAt(0));
60 assertEquals(ALPHABET.charAt(1), ((String[]) sections)[1].charAt(0));
62 ((String[]) sections)[ALPHABET.length() - 2].charAt(0));
64 ((String[]) sections)[ALPHABET.length() - 1].charAt(0));
  /external/google-breakpad/src/common/linux/
elfutils.cc 60 const Shdr* sections = local
62 const Shdr* section_names = sections + elf_header->e_shstrndx;
69 sections, names, names_end,
  /packages/apps/Camera2/src/com/android/camera/util/
XmpUtil.java 61 // Jpeg file is composed of many sections and image data. This class is used
106 List<Section> sections = parse(is, true); local
107 if (sections == null) {
111 for (Section section : sections) {
153 List<Section> sections = null; local
155 sections = parse(new FileInputStream(filename), false);
156 sections = insertXMPSection(sections, meta);
157 if (sections == null) {
168 writeJpegFile(os, sections);
189 List<Section> sections = parse(inputStream, false); local
343 List<Section> sections = new ArrayList<Section>(); local
    [all...]
  /art/dex2oat/linker/
image_test.cc 50 // Sizes of the object sections should be the same for all but the last image.
67 ImageSection sections[ImageHeader::kSectionCount]; local
70 sections,
  /frameworks/compile/mclinker/include/mcld/Script/
InputSectDesc.h 48 const StringList& sections() const { function in struct:mcld::InputSectDesc::Spec
  /toolchain/binutils/binutils-2.27/bfd/
simple.c 100 struct saved_output_info *sections; member in struct:saved_offsets
103 /* The sections in ABFD may already have output sections and offsets
106 DWARF-2 specifies offsets into debug sections in many cases and
109 offsets relative to that object file's sections, not offsets in the
127 output_info = &saved_offsets->sections[section->index];
149 output_info = &saved_offsets->sections[section->index];
165 @var{symbol_table} is NULL. The output offsets for debug sections will
241 saved_offsets.sections = malloc (sizeof (*saved_offsets.sections)
    [all...]
aix386-core.c 53 (((bfd)->tdata.trad_core_data)->sections[n])
65 asection *sections[MAX_CORE_SEGS]; member in struct:trad_core_struct
118 /* Create the sections. */
format.c 103 struct bfd_section *sections; member in struct:bfd_preserve
124 preserve->sections = abfd->sections;
158 abfd->sections = preserve->sections;
292 have sections attached, which will confuse the next
456 sections sizes or alignments in _bfd_set_section_contents.
458 because it will interfere with creation of BFD sections. */
  /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...]
  /frameworks/base/cmds/incident/
main.cpp 99 IncidentSection sections[INCIDENT_SECTION_COUNT]; local
102 // sort the sections based on id
106 if (curr.id > sections[k].id) {
110 curr = sections[k];
111 sections[k] = tmp;
113 sections[j] = curr;
118 fprintf(out, "available sections:\n");
120 fprintf(out, "id: %4d, name: %s\n", sections[i].id, sections[i].name);
178 fprintf(out, " -l list available sections\n")
    [all...]
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 47 StringList* sections = StringList::create(); local
48 sections->push_back(
50 m_Spec.m_pWildcardSections = sections;
313 StringList::const_iterator sect, sectEnd = pInput.spec().sections().end();
314 for (sect = pInput.spec().sections().begin(); sect != sectEnd; ++sect) {
  /frameworks/compile/mclinker/lib/Script/
ScriptFile.cpp 90 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); local
91 sections->push_back(entry);
149 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); local
151 assert(!sections->empty());
153 llvm::cast<OutputSectDesc>(sections->back());
159 sections->push_back(new Assignment(Assignment::OUTPUT_SECTION,
190 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); local
191 sections->push_back(new OutputSectDesc(pName, pProlog));
199 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); local
201 assert(!sections->empty() && m_bInOutputSectDesc)
212 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); local
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/group/
GroupUtilTest.java 51 final String[] sections = new String[]{"?", "A", "I", "T", "W", "Y", "Z", "#"}; local
55 final ContactsSectionIndexer indexer = new ContactsSectionIndexer(sections, counts);
57 GroupUtil.updateBundle(bundle, indexer, subscriptsList, sections, counts);
63 MoreAsserts.assertEquals("Wrong sections!", newSections, bundle.getStringArray(Contacts
73 final String[] sections = new String[]{"A", "B", "C", "D", "E", "F", "G", "H", "J", local
103 final ContactsSectionIndexer indexer = new ContactsSectionIndexer(sections, counts);
105 GroupUtil.updateBundle(bundle, indexer, subscriptsList, sections, counts);
112 MoreAsserts.assertEquals("Wrong sections!", newSections, bundle.getStringArray(Contacts
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactSectionIndexer.java 31 * Indexes contact alphabetical sections so we can report to the fast scrolling list view
65 // Perform a binary search on the starting positions of the sections to the find the
102 final String[] sections = cursorExtras.getStringArray( local
105 if (sections == null || counts == null) {
109 if (sections.length != counts.length) {
113 this.mSections = sections;
134 final ArrayList<String> sections = new ArrayList<String>(); local
147 final int lastIndex = sections.size() - 1;
148 final String currentSection = lastIndex >= 0 ? sections.get(lastIndex) : null;
150 sections.add(section)
    [all...]
  /art/runtime/gc/collector/
immune_spaces_test.cc 113 ImageSection sections[ImageHeader::kSectionCount]; local
117 sections, local
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_ContactCountsTest.java 84 final String sections[] = local
86 assertTrue(Arrays.equals(expectedSections, sections));
  /dalvik/dx/src/com/android/dex/
TableOfContents.java 52 public final Section[] sections = { field in class:TableOfContents
147 Arrays.sort(sections);
152 for (int i = sections.length - 1; i >= 0; i--) {
153 Section section = sections[i];
166 for (Section section : sections) {
202 for (Section section : sections) {
209 for (Section section : sections) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ConfigParser.py 3 A setup file consists of sections, lead by a "[section]" header,
33 sections()
240 def sections(self): member in class:RawConfigParser
459 The sections in setup file contains a title line at the top,
500 # So sections can't start with a continuation line
  /external/llvm/include/llvm/Object/
ObjectFile.h 68 /// sections in the object file.
256 section_iterator_range sections() const { function in class:llvm::object::ObjectFile
  /external/python/cpython2/Lib/
ConfigParser.py 3 A setup file consists of sections, lead by a "[section]" header,
33 sections()
248 def sections(self): member in class:RawConfigParser
467 The sections in setup file contains a title line at the top,
508 # So sections can't start with a continuation line

Completed in 634 milliseconds

1 2 3 4 5 6 7 8 91011