HomeSort by relevance Sort by last modified time
    Searched refs:sections (Results 26 - 50 of 205) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
hw_irq_32.h 18 #include <asm/sections.h>
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
hw_irq_32.h 25 #include <asm/sections.h>
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
hw_irq_32.h 25 #include <asm/sections.h>
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
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...]
action_csspropertynames.py 31 # action_csspropertynames.py is a harness script to connect actions sections of
53 sections = []
61 sections.append(args[:dashes])
69 sections.append(args)
73 return sections
action_cssvaluekeywords.py 35 # action_cssvaluekeywords.py is a harness script to connect actions sections of
57 sections = []
65 sections.append(args[:dashes])
73 sections.append(args)
77 return sections
  /external/smack/src/org/xbill/DNS/
Message.java 11 * and 4 message sections.
25 private List [] sections; field in class:Message
58 sections = new List[4];
106 sections[i] = new ArrayList(count);
110 sections[i].add(rec);
163 if (sections[section] == null)
164 sections[section] = new LinkedList();
166 sections[section].add(r);
176 if (sections[section] != null && sections[section].remove(r))
    [all...]
  /external/elfutils/tests/
run-strip-test.sh 60 tempfiles testfile.sections
61 testrun ../src/readelf -S testfile.temp > testfile.sections || status=$?
62 fgrep ' .debug_' testfile.sections && status=1
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
MapItem.java 43 * sections in the dex file.
45 * This item should be placed last. It depends on the fact that the other sections
59 Section[] sections = dexFile.getOrderedSections(); local
62 return offset + 4 + (sections.length + 2) * 12;
85 Section[] sections = dexFile.getOrderedSections(); local
87 out.annotate("map_size: 0x" + Integer.toHexString(sections.length + 2) + " (" +
88 Integer.toString(sections.length + 2) + ")");
89 out.writeInt(sections.length + 2);
DexFile.java 110 * Ordered lists of the indexed and offsetted sections. The order of these lists specifies the order
111 * that the sections will be written in
398 //the sections are ordered in such a way that the item types
399 Section sections[] = new Section[] { local
418 for (Section section: sections) {
614 Section[] sections = new Section[sectionCount]; local
618 sections[sectionCount++] = section;
622 Arrays.sort(sections, new Comparator<Section>() {
628 return sections;
632 * This method should be called before writing a dex file. It sorts the sections
644 Section[] sections; local
706 Section[] sections; local
    [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/ContactsCommon/src/com/android/contacts/common/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 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/elfutils/libdwfl/
derelocate.c 194 possible target sections we care about. */
275 struct dwfl_relocation *sections = mod->reloc_info; local
277 if (idx >= sections->count)
281 *shndxp = elf_ndxscn (sections->refs[idx].scn);
283 return sections->refs[idx].name;
324 struct dwfl_relocation *sections = mod->reloc_info; local
326 /* The sections are sorted by address, so we can use binary search. */
327 size_t l = 0, u = sections->count;
331 if (*addr < sections->refs[idx].start)
333 else if (*addr > sections->refs[idx].end
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfigurationcansetparameter02.js 78 Check that canSetParameter('cdata-sections') returns true for both true and false
100 canSet = domConfig.canSetParameter("cdata-sections",false);
102 paramVal = domConfig.getParameter("cdata-sections");
104 canSet = domConfig.canSetParameter("cdata-sections",true);
106 domConfig.setParameter("cdata-sections", false);
107 canSet = domConfig.canSetParameter("cdata-sections",true);
109 paramVal = domConfig.getParameter("cdata-sections");
111 canSet = domConfig.canSetParameter("cdata-sections",false);
  /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);
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize_addr2line_linux.cc 46 SectionDesc *sections; member in struct:__tsan::DlIteratePhdrCtx
122 sec->next = ctx->sections;
123 ctx->sections = sec;
132 return ctx.sections;
136 static SectionDesc *sections = 0; local
137 if (sections == 0)
138 sections = InitSections();
139 for (SectionDesc *s = sections; s; s = s->next) {
  /external/elfutils/lib/
Makefile.am 46 xmalloc_CFLAGS = -ffunction-sections
  /external/iproute2/ip/
Android.mk 22 LOCAL_LDFLAGS := -Wl,-export-dynamic -Wl,--no-gc-sections
  /external/chromium/chrome/browser/ui/webui/
shown_sections_handler.cc 79 int sections = pref_service_->GetInteger(prefs::kNTPShownSections); local
80 FundamentalValue sections_value(sections);
88 int sections = GetShownSections(pref_service_); local
89 FundamentalValue sections_value(sections);
108 // Default to have expanded APPS and all other sections are minimized.
130 // In version 3, we went from being able to show multiple sections to being
132 // sections are APPS and THUMBS.
154 // Hide any open sections.
  /external/kernel-headers/original/asm-x86/
hw_irq_32.h 18 #include <asm/sections.h>
  /external/llvm/test/MC/X86/AlignedBundling/
different-sections.s 4 # Test two different executable sections with bundling.
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 92 * {@code non-null;} array of sections in the order they will appear in the
95 private final Section[] sections; field in class:DexFile
123 * This is the list of sections in the order they appear in
126 sections = new Section[] {
479 * add items happen before the calls to the sections that get
496 // Place the sections within the file.
498 int count = sections.length;
502 Section one = sections[i];
511 * Inform the map of all the sections, and add it
515 MapItem.addMap(sections, map)
    [all...]

Completed in 567 milliseconds

12 3 4 5 6 7 8 9