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

1 2 3 4 5

  /bionic/libc/kernel/arch-x86/asm/
sections.h 12 #include <asm-generic/sections.h>
hw_irq_32.h 18 #include <asm/sections.h>
  /development/ndk/platforms/android-9/arch-x86/include/asm/
sections.h 12 #include <asm-generic/sections.h>
hw_irq_32.h 18 #include <asm/sections.h>
  /external/kernel-headers/original/asm-x86/
sections.h 1 #include <asm-generic/sections.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
sections.h 12 #include <asm-generic/sections.h>
hw_irq_32.h 18 #include <asm/sections.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
sections.h 12 #include <asm-generic/sections.h>
hw_irq_32.h 18 #include <asm/sections.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
sections.h 12 #include <asm-generic/sections.h>
hw_irq_32.h 18 #include <asm/sections.h>
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/
sections.h 12 #include <asm-generic/sections.h>
hw_irq_32.h 18 #include <asm/sections.h>
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
sections.h 12 #include <asm-generic/sections.h>
hw_irq_32.h 18 #include <asm/sections.h>
  /bionic/libc/kernel/arch-sh/asm/
sections.h 15 #include <asm-generic/sections.h>
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_useragentstylesheets.py 37 # Multiple OUTPUTS and INPUTS may be listed. The sections are separated by
54 sections = []
62 sections.append(args[:dashes])
70 sections.append(args)
74 return sections
78 sections = SplitArgsIntoSections(args[1:])
79 assert len(sections) == 2
80 (outputs, inputs) = sections
action_maketokenizer.py 37 # Multiple INPUTS may be listed. The sections are separated by -- arguments.
51 sections = []
59 sections.append(args[:dashes])
67 sections.append(args)
71 return sections
75 sections = SplitArgsIntoSections(args[1:])
76 assert len(sections) == 2
77 (outputs, inputs) = sections
rule_binding.py 57 sections = []
65 sections.append(args[:dashes])
73 sections.append(args)
77 return sections
81 sections = SplitArgsIntoSections(args[1:])
82 assert len(sections) == 3, sections
83 (base, inputs, options) = sections
action_makenames.py 35 # action_makenames.py is a harness script to connect actions sections of
40 # Multiple OUTPUTS, INPUTS, and OPTIONS may be listed. The sections are
66 sections = []
74 sections.append(args[:dashes])
82 sections.append(args)
86 return sections
90 sections = SplitArgsIntoSections(args[1:])
91 assert len(sections) == 2 or len(sections) == 3
92 (outputs, inputs) = sections[:2
    [all...]
  /dalvik/tools/
deadcode.py 18 sections = {}
30 sections[sectionName] = buffer[anchor]
31 return sections
33 # Add the lines from the last header, to this one to the sections
36 sections[sectionName] = buffer[anchor:result.start()]
42 return sections
107 sections = SplitSections(data)
112 methods = FindMethods(sections['method code index'])
113 codes = sections['codes']
114 del(sections)
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactEntryAdapter.java 78 ContactEntryAdapter(Context context, ArrayList<ArrayList<E>> sections, boolean separators) {
81 mSections = sections;
88 * @param sections the section data
90 public final void setSections(ArrayList<ArrayList<E>> sections, boolean separators) {
91 mSections = sections;
99 * @param sections the section data
103 public final int setSections(ArrayList<ArrayList<E>> sections, E entry) {
104 mSections = sections;
175 * @param sections the list of sections
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsSectionIndexer.java 38 * @param sections a non-null array
39 * @param counts a non-null array of the same size as <code>sections</code>
41 public ContactsSectionIndexer(String[] sections, int[] counts) {
42 if (sections == null || counts == null) {
46 if (sections.length != counts.length) {
48 "The sections and counts arrays must have the same length");
51 // TODO process sections/counts based on current locale and/or specific section titles
53 this.mSections = sections;
  /external/webkit/Source/WebCore/inspector/front-end/
PropertiesSidebarPane.js 41 this.sections = [];
70 this.sections = [];
82 this.sections.push(section);
  /cts/tests/tests/widget/src/android/widget/cts/
AlphabetIndexerTest.java 79 Object[] sections = indexer.getSections(); local
80 assertTrue(sections instanceof String[]);
81 assertEquals(ALPHABET.length(), sections.length);
82 assertEquals(ALPHABET.charAt(0), ((String[]) sections)[0].charAt(0));
83 assertEquals(ALPHABET.charAt(1), ((String[]) sections)[1].charAt(0));
85 ((String[]) sections)[ALPHABET.length() - 2].charAt(0));
87 ((String[]) sections)[ALPHABET.length() - 1].charAt(0));

Completed in 1395 milliseconds

1 2 3 4 5