Home
last modified time | relevance | path

Searched refs:section (Results 1 – 25 of 175) sorted by relevance

1234567

/AOO41X/main/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/
H A DProductDescription.java158 XMLPackageDescription section; in parse() local
162 section = data.getElement("product"); in parse()
163 if (section != null) { in parse()
164 parse(section); in parse()
170 section = data.getElement("defaultdir"); in parse()
171 if (section != null) { in parse()
172 String value = section.getValue(); in parse()
180 section = data.getElement("productdir"); in parse()
181 if (section != null) { in parse()
182 String value = section.getValue(); in parse()
[all …]
H A DPackageDescription.java392 private String getLocalizedValue(XMLPackageDescription packageData, String section, Locale l) { in getLocalizedValue() argument
399 XMLPackageDescription subPackage = packageData.getElement(section, "lang", localeString); in getLocalizedValue()
401 subPackage = packageData.getElement(section, "lang", languageString); in getLocalizedValue()
403 subPackage = packageData.getElement(section, "lang", "en_US"); in getLocalizedValue()
419 XMLPackageDescription section; in parse() local
423 section = data.getElement("display"); in parse()
424 if (section != null) { in parse()
426 String displayType = section.getAttribute("type"); in parse()
433 dpyName = getLocalizedValue(section, "name", locale); in parse()
434 dpyDescription = getLocalizedValue(section, "description", locale); in parse()
[all …]
/AOO41X/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/
H A DOfficeTableTemplateLayoutController.java77 final Section section = new Section(); in initialize() local
78 section.setNamespace(JFreeReportInfo.REPORT_NAMESPACE); in initialize()
79 section.setType("template"); in initialize()
80 super.initialize(section, flowController, parent); in initialize()
107 private void addPBody(final List tables, final Section section) in addPBody() argument
109 if (section != null) in addPBody()
112 final Node[] nodeArray = section.getNodeArray(); in addPBody()
122 private void addFromBody(final List tables, final Section section) in addFromBody() argument
124 final Node[] nodeArray = section.getNodeArray(); in addFromBody()
143 private void addFromGroup(final List tables, final Section section) in addFromGroup() argument
[all …]
H A DTableCellLayoutController.java122 private FormattedTextElement findFormattedTextElement(final Section section) in findFormattedTextElement() argument
124 final Node[] nodeArray = section.getNodeArray(); in findFormattedTextElement()
144 private String getDisplayStyleName(final Section section, in getDisplayStyleName() argument
147 if (!section.isEnabled() || section.getNodeCount() == 0) in getDisplayStyleName()
152 final Node[] nodes = section.getNodeArray(); in getDisplayStyleName()
/AOO41X/main/offapi/com/sun/star/text/
H A DTextSection.idl67 <p>The content of the section may be the content of a link into another
90 <member>TextSection::IsVisible</member> is <false/>, then the section is hidden.</p>
95 /** If this property is <FALSE/>, the text section is hidden.
100 /** If this property is <TRUE/>, the text section is protected
106 /** If this property is set, then the content of the section is read
116 <p>The source may be a text section or a bookmark.
120 then the complete document content is linked into this section.</p>
157 /** determins whether footnotes inside the section are displayed at the end of the
158 section text.
162 /** determins whether the footnotes numbering restarts within the section.
[all …]
H A DSectionFileLink.idl34 /** describes the link for a text section.
38 <p>If the URL is an empty string, then the section is not linked.
42 or a section name in the linked document. If a bookmark or section
44 into the given text section.
/AOO41X/main/offapi/com/sun/star/ucb/
H A DWebDAVHTTPMethod.idl35 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.3">RFC 2616: Hypertext Trans…
40 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.4">RFC 2616: Hypertext Trans…
45 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.5">RFC 2616: Hypertext Trans…
50 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.6">RFC 2616: Hypertext Trans…
55 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.7">RFC 2616: Hypertext Trans…
60 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.8">RFC 2616: Hypertext Trans…
65 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.2">RFC 2616: Hypertext Trans…
70 …<a target="_blank" href="http://tools.ietf.org/html/rfc2616#section-9.9">RFC 2616: Hypertext Trans…
80 …<a target="_blank" href="http://tools.ietf.org/html/rfc4918#section-9.1">HTTP Extensions for Web D…
85 …<a target="_blank" href="http://tools.ietf.org/html/rfc4918#section-9.2">HTTP Extensions for Web D…
[all …]
/AOO41X/main/reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/
H A DRootTableReadHandler.java41 private final Section section; field in RootTableReadHandler
45 section = new Section(); in RootTableReadHandler()
48 protected RootTableReadHandler(final Section section) in RootTableReadHandler() argument
50 if (section == null) in RootTableReadHandler()
54 this.section = section; in RootTableReadHandler()
78 return new ConditionalPrintExpressionReadHandler(section); in getHandlerForChild()
93 section.addNode(sectionTableReadHandler.getElement()); in doneParsing()
99 return section; in getElement()
H A DReportReadHandler.java222 final Section section = new Section(); in createSection() local
223 section.setNamespace(JFreeReportInfo.REPORT_NAMESPACE); in createSection()
224 section.setType(name); in createSection()
229 section.addNode(erh.getElement()); in createSection()
231 return section; in createSection()
H A DSubDocumentReadHandler.java54 public SubDocumentReadHandler(final Section section, final ObjectOleElement element) in SubDocumentReadHandler() argument
56 super(section); in SubDocumentReadHandler()
60 public SubDocumentReadHandler(final Section section) in SubDocumentReadHandler() argument
62 this(section, new ObjectOleElement()); in SubDocumentReadHandler()
/AOO41X/main/reportbuilder/java/com/sun/star/report/pentaho/parser/text/
H A DNoCDATATextContentReadHandler.java57 private Section section; field in NoCDATATextContentReadHandler
61 public NoCDATATextContentReadHandler(final Section section, in NoCDATATextContentReadHandler() argument
65 this.section = section; in NoCDATATextContentReadHandler()
69 public NoCDATATextContentReadHandler(final Section section) in NoCDATATextContentReadHandler() argument
71 this(section, false); in NoCDATATextContentReadHandler()
131 … final SubDocumentReadHandler subDocReadHandler = new SubDocumentReadHandler(section); in getHandlerForChild()
176 section.addNode(handler.getElement()); in doneParsing()
180 section.addNode((StaticText) o); in doneParsing()
187 return section; in getElement()
H A DTextContentReadHandler.java39 public TextContentReadHandler(final Section section, final boolean copyType) in TextContentReadHandler() argument
41 super(section, copyType); in TextContentReadHandler()
44 public TextContentReadHandler(final Section section) in TextContentReadHandler() argument
46 super(section); in TextContentReadHandler()
/AOO41X/main/offapi/com/sun/star/report/
H A DXSection.idl58 <p>A section acts like a container of report components. This generic
92 /** Defines if the section should be visible in report.
96 /** Defines the name of the section.
100 /** Defines the height of the section.
104 /** Defines the back ground color of the section.
112 /** Defines the expression which is executed before printing the section.
113 If the return value of the expression is <TRUE/> then the section will be printed.
117 /** Specifies wether the section is printed on a separate page.
127 /** Specifies wether the section is printed in a new row or column within a multi column report.
137 /** Specifies that the section is printed on one page.
[all …]
H A DForceNewPage.idl33 /** Specifies if the section will be printed on an separte page.
41 /** The current section is printed on the current page.
45 /** The current section is printed at the top of a new page.
49 /** The next section following the current section is printed at the top of a new page.
53 /** The current section is printed at the top of a new page as well as the next section.
H A DSectionPageBreak.idl33 /** Specifies that page breaks are allowed inside this section.
40 …/** Page breaks will never be inserted. If the section doesn't fit on a page than the content will…
44 …/** If the section doesn't fit on page than a page break will be inserted as long as the section f…
48 …/** If the section doesn't fit on page than a page break will be inserted as long as the section f…
/AOO41X/main/solenv/bin/modules/installer/
H A Dprofiles.pm56 my $section = $1;
58 if (!(installer::existence::exists_in_array($section, \@definedsections)))
60 my $sectionline = $section . "\n";
61 push(@definedsections, $section);
69 if ( $oneline eq $section )
179 my $section = $oneprofileitem->{'Section'};
190 my $line = "[" . $section . "]" . "\n";
/AOO41X/main/sal/osl/unx/asm/
H A Dinterlck_sparc.s49 .section ".data"
62 .section ".text"
95 .section ".text"
118 .section ".text"
163 .section ".text"
188 .section ".text"
211 .section ".text"
240 .section ".text"
/AOO41X/main/sysui/desktop/debian/
H A Dopenoffice.org-debian-menus1 ?package(openoffice.org-writer):needs="X11" section="Apps/Editors"\
8 ?package(openoffice.org-calc):needs="X11" section="Apps/Math"\
15 ?package(openoffice.org-draw):needs="X11" section="Apps/Graphics"\
22 ?package(openoffice.org-impress):needs="X11" section="Apps/Graphics"\
29 ?package(openoffice.org-base):needs="X11" section="Apps/Databases"\
36 ?package(openoffice.org-core02):needs="X11" section="Apps/System"\
/AOO41X/main/solenv/bin/modules/
H A DCwsConfig.pm463 my $section = '';
478 $section = $1;
479 if (!defined $config{$section}) {
480 $config{$section} = {};
483 defined $config{$section} || croak("ERROR: unknown / no section '$section'\n");
502 $config{$section}->{$var} = $val;
/AOO41X/main/setup_native/source/win32/customactions/patch/
H A Dswappatchfiles.cxx403 std::_tstring section; in getProfileString() local
415 section = trim( line.substr( 0, end ) ); in getProfileString()
431 0 == _tcsicmp( section.c_str(), aSectionName.c_str() ) && in getProfileString()
458 std::_tstring section; in getProfileSections() local
470 section = trim( line.substr( 0, end ) ); in getProfileSections()
472 aResult.push( section ); in getProfileSections()
474 OutputDebugStringFormat( TEXT("Section: %s"), section.c_str() ); in getProfileSections()
497 std::_tstring section; in getProfileKeys() local
509 section = trim( line.substr( 0, end ) ); in getProfileKeys()
521 if ( 0 == _tcsicmp( section.c_str(), aSectionName.c_str() ) ) in getProfileKeys()
/AOO41X/main/offapi/com/sun/star/sdb/
H A DErrorCondition.idl68 // = section ROW_SET - css.sdb.RowSet related error conditions
81 // = section PARSER - parsing related error conditions
94 // = section DB - application-level error conditions
96 // = next section should start with 500
139 // = section AB - address book access related error conditions
141 // = next section should start with 550
153 // = section DATA - data retrieval related error conditions
155 // = next section should start with 600
/AOO41X/main/reportbuilder/java/com/sun/star/report/pentaho/output/
H A DStylesWriter.java249 private void writeSection(final Section section) in writeSection() argument
252 final String type = section.getType(); in writeSection()
253 final String namespace = section.getNamespace(); in writeSection()
254 final AttributeList attrList = buildAttributeList(section.getAttributeMap()); in writeSection()
255 if (section.getNodeCount() == 0) in writeSection()
262 writeSectionChilds(section.getNodeArray()); in writeSection()
H A DStyleUtilities.java546 … final Element section = officeStyle.findFirstChild(OfficeNamespaces.STYLE_NS, sectionName); in queryStyleByProperties() local
547 if (section != null) in queryStyleByProperties()
554 final Object obj = section.getAttribute(ns, prop); in queryStyleByProperties()
595 final Element section = style.findFirstChild(OfficeNamespaces.STYLE_NS, sectionName); in queryStyle() local
596 if (section != null) in queryStyle()
598 final Object attribute = section.getAttribute(propertyNamespace, propertyName); in queryStyle()
/AOO41X/main/dbaccess/source/ui/dlg/
H A DTextConnectionHelper.cxx221 … for ( size_t section=0; section < sizeof( aSections ) / sizeof( aSections[0] ) - 1; ++section ) in DBG_NAME() local
223 if ( ( m_nAvailableSections & aSections[section].nFlag ) != 0 ) in DBG_NAME()
229 Window* pThisSection = aSections[section].pFirstControl; in DBG_NAME()
230 Window* pNextSection = aSections[section+1].pFirstControl; in DBG_NAME()
/AOO41X/main/wizards/com/sun/star/wizards/agenda/
H A DAgendaTemplate.java723 Object section = getSection(allSections[i]); in deleteHiddenSections() local
725 … boolean visible = ((Boolean) Helper.getUnoPropertyValue(section, "IsVisible")).booleanValue(); in deleteHiddenSections()
728 …UnoRuntime.queryInterface(XTextContent.class, section).getAnchor().setString(PropertyNames.EMPTY_S… in deleteHiddenSections()
946 Object section; field in AgendaTemplate.ItemsTable
956 section = section_; in ItemsTable()
1001 String name = getName(section); in write()
1004 textSectionHandler.linkSectiontoTemplate(section, template, name); in write()
1005 textSectionHandler.breakLinkOfTextSection(section); in write()
1009 section = getSection(name); in write()
1044 … Helper.setUnoPropertyValue(section, "IsVisible", visible ? Boolean.TRUE : Boolean.FALSE); in write()

1234567