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

12 3 4 5

  /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/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);
documentnormalizedocument02.js 82 Normalize a document with the 'cdata-sections' parameter set to false and
88 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-cdata-sections
117 domConfig.setParameter("cdata-sections", true);
128 domConfig.setParameter("cdata-sections", false);
documentnormalizedocument03.js 82 'cdata-sections' parameter set to true then to false and check if
89 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-cdata-sections
118 domConfig.setParameter("cdata-sections", true);
129 domConfig.setParameter("cdata-sections", false);
documentnormalizedocument08.js 81 Add two CDATASections containing "]]>" perform normalization with split-cdata-sections=true.
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-split-cdata-sections
124 domConfig.setParameter("split-cdata-sections", true);
136 ("cdata-sections-splitted" == type)
cdatasections01.js 82 the value of the 'cdata-sections' parameter is ignored.
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-cdata-sections
115 domConfig.setParameter("cdata-sections", false);
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
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
  /dalvik/dx/src/com/android/dx/dex/
TableOfContents.java 52 public final Section[] sections = { field in class:TableOfContents
141 Arrays.sort(sections);
146 for (int i = sections.length - 1; i >= 0; i--) {
147 Section section = sections[i];
160 for (Section section : sections) {
196 for (Section section : sections) {
203 for (Section section : 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/v8/test/preparser/
testcfg.py 83 def GetTestStatus(self, sections, defs):
86 test.ReadConfigurationInto(status_file, sections, defs)
  /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...]
MapItem.java 60 * the contents of the given array of sections, adding it to the
63 * @param sections {@code non-null;} the sections
67 public static void addMap(Section[] sections,
69 if (sections == null) {
70 throw new NullPointerException("sections == null");
80 for (Section section : sections) {
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 97 * {@code non-null;} array of sections in the order they will appear in the
100 private final Section[] sections; field in class:DexFile
130 * This is the list of sections in the order they appear in
133 sections = new Section[] {
498 * add items happen before the calls to the sections that get
515 // Place the sections within the file.
517 int count = sections.length;
521 Section one = sections[i];
530 * Inform the map of all the sections, and add it
534 MapItem.addMap(sections, map)
    [all...]
MapItem.java 60 * the contents of the given array of sections, adding it to the
63 * @param sections {@code non-null;} the sections
67 public static void addMap(Section[] sections,
69 if (sections == null) {
70 throw new NullPointerException("sections == null");
80 for (Section section : sections) {
  /external/webkit/Source/WebCore/inspector/front-end/
EventListenersSidebarPane.js 35 this.sections = [];
65 this.sections = [];
86 self.sections.push(section);
116 for (var i = 0; i < this.sections.length; ++i)
117 this.sections[i].update();
StylesSidebarPane.js 149 this.sections = {};
173 for (var pseudoId in this.sections) {
174 var styleRules = this._refreshStyleRules(this.sections[pseudoId], computedStyle);
181 this.sections[0][0].rebuildComputedTrace(this.sections[0]);
193 this.sections[0] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, disabledComputedProperties, 0);
194 var anchorElement = this.sections[0].inheritedPropertiesSeparatorElement;
196 this.sections[0][0].rebuildComputedTrace(this.sections[0]);
215 this.sections[pseudoId] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, disabledComputedPropert (…)
    [all...]
  /external/clang/utils/
SummarizeErrors 81 sections = [
89 sections.reverse()
91 for l,title in sections:
  /external/llvm/test/Scripts/
elf-dump 187 sections = []
191 sections.append(s)
194 f.seek(sections[e_shstrndx[0]].sh_offset[0])
195 shstrtab = StringTable(f.read(sections[e_shstrndx[0]].sh_size[0]))
199 for section in sections:
208 sections[index].dump(shstrtab, f, strtab, opts.dumpSectionData)
215 help="Dump the contents of sections",
  /external/v8/test/es5conform/
testcfg.py 102 def GetTestStatus(self, sections, defs):
105 test.ReadConfigurationInto(status_file, sections, defs)
  /external/v8/test/sputnik/
testcfg.py 106 def GetTestStatus(self, sections, defs):
109 test.ReadConfigurationInto(status_file, sections, defs)
  /build/core/combo/
TARGET_linux-sh.mk 53 -ffunction-sections \
126 -Wl,--gc-sections -Wl,-z,norelro \
148 -Wl,--gc-sections -Wl,-z,norelro \
167 -Wl,--gc-sections -Wl,-z,norelro \
TARGET_linux-arm.mk 106 -ffunction-sections \
107 -fdata-sections \
248 -Wl,--gc-sections \
271 -Wl,--gc-sections \
291 -Wl,--gc-sections \
  /external/webkit/Tools/Scripts/
update-iexploder-cssproperties 98 my @sections = ();
102 @sections = <IN>;
105 return @sections;
115 my @sections = readiExploderFile($iexploderPath);
116 $sections[0] = generateEntityListFromFile($webcorePath);
117 writeiExploderFile($iexploderPath, @sections);
123 my ($filename, @sections) = @_;
126 print OUT join("", @sections);

Completed in 420 milliseconds

12 3 4 5