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

1 2

  /external/webkit/WebCore/inspector/front-end/
PropertiesSection.js 32 WebInspector.Section.call(this, title, subtitle);
38 this.propertiesTreeOutline.section = this;
43 WebInspector.PropertiesSection.prototype.__proto__ = WebInspector.Section.prototype;
Section.js 30 WebInspector.Section = function(title, subtitle)
33 this.element.className = "section";
55 WebInspector.Section.prototype = {
AuditResultView.js 77 var section = new WebInspector.AuditRuleResultChildSection(ruleResult.children[i]);
78 this.bodyElement.appendChild(section.element);
101 WebInspector.Section.call(this, entry.value);
105 this.element.addStyleClass("blank-section");
108 this.contentElement.addStyleClass("section-content");
134 WebInspector.Section.prototype.expand.call(this);
138 WebInspector.AuditRuleResultChildSection.prototype.__proto__ = WebInspector.Section.prototype;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewInfoPart.java 28 import org.eclipse.ui.forms.widgets.Section;
31 * Generic info section part for overview page: it displays all the attributes from
41 "Manifest General Attributes", // section title
42 "Defines general information about the AndroidManifest.xml", // section description
43 Section.TWISTIE | Section.EXPANDED);
OverviewExportPart.java 33 import org.eclipse.ui.forms.widgets.Section;
37 * Export section part for overview page.
44 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
46 Section section = getSection(); local
47 section.setText("Exporting");
59 section.setDescription("Library project cannot be exported.");
63 section.setDescription("To export the application for distribution, you have the following options:");
OverviewLinksPart.java 29 import org.eclipse.ui.forms.widgets.Section;
32 * Links section part for overview page.
40 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
42 Section section = getSection(); local
43 section.setText("Links");
44 section.setDescription("The content of the Android Manifest is made up of three sections. You can also edit the XML directly.");
ApplicationAttributesPart.java 33 import org.eclipse.ui.forms.widgets.Section;
36 * Application's attributes section part for Application page.
51 "Application Attributes", // section title
52 "Defines the attributes specific to the application.", // section description
53 Section.TWISTIE | Section.EXPANDED);
151 // Tell the section that the layout has changed.
ApplicationToggle.java 36 import org.eclipse.ui.forms.widgets.Section;
43 * Appllication Toogle section part for application page.
61 Section.TWISTIE | Section.EXPANDED);
118 // Tell the section that the layout has changed.
  /dalvik/dx/src/com/android/dx/dex/file/
OffsettedItem.java 35 * {@code null-ok;} section the item was added to, or {@code null} if
38 private Section addedTo;
41 * {@code >= -1;} assigned offset of the item from the start of its section,
71 Section.validateAlignment(alignment);
183 * the section which the instance was written to.
212 * Indicates that this item has been added to the given section at
216 * @param addedTo {@code non-null;} the section this instance has
219 * section where this instance was placed
223 public final int place(Section addedTo, int offset) {
297 * @param addedTo {@code non-null;} the section this instance has been added t
    [all...]
MapItem.java 37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
67 public static void addMap(Section[] sections,
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
    [all...]
Section.java 24 * A section of a {@code .dex} file. Each section consists of a list
27 public abstract class Section {
69 public Section(String name, DexFile file, int alignment) {
194 * be contained in this section. This is only valid to call
219 * Gets the collection of all the items in this section.
280 * Returns the name of this section, for annotation purposes.
DexFile.java 45 /** {@code non-null;} word data section */
49 * {@code non-null;} type lists section. This is word data, but separating
56 * {@code non-null;} map section. The map needs to be in a section by itself
62 /** {@code non-null;} string data section */
65 /** {@code non-null;} string identifiers section */
68 /** {@code non-null;} type identifiers section */
71 /** {@code non-null;} prototype identifiers section */
74 /** {@code non-null;} field identifiers section */
77 /** {@code non-null;} method identifiers section */
    [all...]
HeaderItem.java 24 * File header section of a {@code .dex} file.
33 /** size of this section, in bytes */
68 Section firstDataSection = file.getFirstDataSection();
69 Section lastDataSection = file.getLastDataSection();
107 // Write out each section's respective header part.
UniformItemSection.java 25 * A section of a {@code .dex} file which consists of a sequence of
29 public abstract class UniformItemSection extends Section {
EncodedArrayItem.java 101 protected void place0(Section addedTo, int offset) {
AnnotationSetItem.java 126 protected void place0(Section addedTo, int offset) {
Statistics.java 60 public void addAll(Section list) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportLinksPart.java 31 import org.eclipse.ui.forms.widgets.Section;
34 * Links section part for export properties page.
42 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
43 Section section = getSection(); local
44 section.setText("Links");
45 section.setDescription("TODO SOME TEXT HERE. You can also edit the XML directly.");
ExportFieldsPart.java 24 import org.eclipse.ui.forms.widgets.Section;
29 * Section part for editing the properties in an Export editor.
35 Section section = getSection(); local
37 section.setText("Export Properties");
38 section.setDescription("Properties of export.properties:");
AbstractPropertiesFieldsPart.java 33 import org.eclipse.ui.forms.widgets.Section;
39 * Section part for editing fields of a properties file in an Export editor.
52 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 35 import org.eclipse.ui.forms.widgets.Section;
55 * Utility class that derives from SectionPart, constructs the Section with
65 * The section style includes a description and a title bar by default.
78 * The section style includes a description and a title bar by default.
79 * You can add extra styles, like Section.TWISTIE.
84 * @param use_description True if the Section.DESCRIPTION style should be added.
89 Section.TITLE_BAR |
90 (use_description ? Section.DESCRIPTION : 0));
98 * If the parent composite is a Section, the new composite is set as a client.
161 * Forces the section to recompute its layout and redraw
165 Section section = getSection(); local
    [all...]
UiElementPart.java 32 import org.eclipse.ui.forms.widgets.Section;
35 * Generic page's section part that displays all attributes of a given {@link UiElementNode}.
104 * Setup the section that contains this part.
106 * This is called by the constructor to set the section's title and description
112 * @param sectionTitle The section part's title
113 * @param sectionDescription The section part's description
116 Section section = getSection(); local
117 section.setText(sectionTitle);
118 section.setDescription(sectionDescription)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 49 import org.eclipse.ui.forms.widgets.Section;
68 private Section mMasterSection;
185 * Creates a TableWrapLayout in the DetailsPage, which in turns contains a Section.
192 * + Section (with title/description && fill_grab horizontal)
199 * @return The new Section
201 private Section createMasterSection(Composite parent) {
207 Section section = toolkit.createSection(parent, Section.TITLE_BAR); local
208 section.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP))
386 Section section = toolkit.createSection(masterTable, local
429 Section section = ((Section) unknownTable.getParent()); local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-048.js 4 ECMA Section: 7.8.1 Rules of Automatic Semicolon Insertion
10 var SECTION = "lexical-048";
15 writeHeaderToLog( SECTION + " "+ TITLE);
33 SECTION,
lexical-049.js 4 ECMA Section: 7.8.1 Rules of Automatic Semicolon Insertioin
9 var SECTION = "lexical-049";
14 writeHeaderToLog( SECTION + " "+ TITLE);
38 SECTION,

Completed in 702 milliseconds

1 2