Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 132) sorted by relevance

123456

/AOO42X/main/solenv/bin/modules/installer/
H A Dxpdinstaller.pm130 …my $tag = $indent . "<package " . "name=" . "\"" . $modulegid . "\" " . "parent=" . "\"" . $parent…
132 return ( $tag, $parentgid );
158 my $tag = $indent . "<display " . "type=" . "\"" . $type . "\"" . ">" . "\n";
160 return $tag;
173 my $tag = $indent . "<installunit " . "type=" . "\"" . $type . "\"" . ">" . "\n";
175 return $tag;
184 my ( $tag, $indent ) = @_;
186 my $starttag = $indent . "<" . $tag . ">" . "\n";
196 my ( $tag, $indent ) = @_;
198 my $endtag = $indent . "</" . $tag . ">" . "\n";
[all …]
/AOO42X/main/writerfilter/documentation/doxygen/
H A DDoxyfile37 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
42 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
48 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
55 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
64 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
76 # This tag can be used to specify the encoding used in the generated output.
79 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
81 # whereas setting the tag to NO uses a Unix-style encoding (the default for
86 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
93 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
[all …]
/AOO42X/main/offapi/com/sun/star/embed/
H A DXRelationshipAccess.idl55 is represented by a set of tags, where each tag has unique for this entry
56 name and a string value. An entry must contain at least one tag named
57 "ID", the value of this tag must be uniqued for the whole set of entries,
58 this tag is used as a uniqued identified of an entry.
65 "ID" tag.
68 the value of "ID" tag
77 /** retrieves the value of "Target" tag from the entry with specified "ID"
78 tag.
81 If the entry has no "Target" tag an empty string is returned.
85 the value of "ID" tag
[all …]
/AOO42X/main/solenv/doc/gbuild/
H A Ddoxygen.cfg37 # This tag specifies the encoding used for all characters in the config file
39 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
45 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
50 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
72 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
85 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
92 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
99 # This tag implements a quasi-intelligent brief description abbreviator
[all …]
/AOO42X/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/
H A DTagPair.java94 Tag tag=(Tag)tagList.get(0); in TagPair() local
98 if("Text".equals(tag.getTagType())){ in TagPair()
103 this.startingText=tag.getTagString(); in TagPair()
107 contentList.add(tag); in TagPair()
109 this.startingText=tag.getTagString(); in TagPair()
111 }else if("EndTag".equals(tag.getTagType())){ in TagPair()
113 }else if("StartTag".equals(tag.getTagType())){ in TagPair()
115 this.startTag=tag; in TagPair()
121 …if((tag=(Tag)iter.next()).getTagName().equals('/'+this.startTag.getTagName())&&equivalentTagCounte… in TagPair()
127 this.endTag=tag; in TagPair()
[all …]
/AOO42X/main/vcl/source/fontsubset/
H A Dttcr.cxx52 sal_uInt32 tag; /**< TrueType file tag */ member
73 sal_uInt32 tag; member
219 return ((const TableEntry *) l)->tag - ((const TableEntry *) r)->tag; in TableEntryCompareF()
268 void TrueTypeCreatorNewEmpty(sal_uInt32 tag, TrueTypeCreator **_this) in TrueTypeCreatorNewEmpty() argument
275 ptr->tag = tag; in TrueTypeCreatorNewEmpty()
288 void RemoveTable(TrueTypeCreator *_this, sal_uInt32 tag) in RemoveTable() argument
295 if (((TrueTypeTable *) listCurrent(_this->tables))->tag == tag) { in RemoveTable()
330 … GetRawData((TrueTypeTable *) listCurrent(_this->tables), &te[i].data, &te[i].length, &te[i].tag); in StreamToMemory()
355 PutUInt32(_this->tag, ttf, 0, 1); in StreamToMemory()
363 PutUInt32(te[i].tag, ttf + 12, 16 * i, 1); in StreamToMemory()
[all …]
H A Dttcr.hxx48 …sal_uInt32 tag; /* table tag … member
72 void TrueTypeCreatorNewEmpty(sal_uInt32 tag, TrueTypeCreator **_this);
88 void RemoveTable(TrueTypeCreator *_this, sal_uInt32 tag);
121 int GetRawData(TrueTypeTable *, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag);
131 TrueTypeTable *TrueTypeTableNew(sal_uInt32 tag,
/AOO42X/main/xmerge/java/aportisdoc/src/main/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/
H A DConverterCapabilitiesImpl.java43 public boolean canConvertTag(String tag) { in canConvertTag() argument
45 if (OfficeConstants.TAG_OFFICE_DOCUMENT.equals(tag)) in canConvertTag()
47 else if (OfficeConstants.TAG_OFFICE_DOCUMENT_CONTENT.equals(tag)) in canConvertTag()
49 else if (OfficeConstants.TAG_OFFICE_BODY.equals(tag)) in canConvertTag()
51 else if (OfficeConstants.TAG_PARAGRAPH.equals(tag)) in canConvertTag()
53 else if (OfficeConstants.TAG_HEADING.equals(tag)) in canConvertTag()
55 else if (OfficeConstants.TAG_ORDERED_LIST.equals(tag)) in canConvertTag()
57 else if (OfficeConstants.TAG_UNORDERED_LIST.equals(tag)) in canConvertTag()
59 else if (OfficeConstants.TAG_LIST_ITEM.equals(tag)) in canConvertTag()
61 else if (OfficeConstants.TAG_LIST_HEADER.equals(tag)) in canConvertTag()
[all …]
/AOO42X/main/xmerge/java/pocketword/src/main/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/
H A DConverterCapabilitiesImpl.java43 public boolean canConvertTag(String tag) { in canConvertTag() argument
45 if (OfficeConstants.TAG_OFFICE_DOCUMENT.equals(tag)) in canConvertTag()
47 else if (OfficeConstants.TAG_OFFICE_DOCUMENT_CONTENT.equals(tag)) in canConvertTag()
49 else if (OfficeConstants.TAG_OFFICE_BODY.equals(tag)) in canConvertTag()
51 else if (OfficeConstants.TAG_PARAGRAPH.equals(tag)) in canConvertTag()
53 else if (OfficeConstants.TAG_HEADING.equals(tag)) in canConvertTag()
55 else if (OfficeConstants.TAG_ORDERED_LIST.equals(tag)) in canConvertTag()
57 else if (OfficeConstants.TAG_UNORDERED_LIST.equals(tag)) in canConvertTag()
59 else if (OfficeConstants.TAG_LIST_ITEM.equals(tag)) in canConvertTag()
61 else if (OfficeConstants.TAG_LIST_HEADER.equals(tag)) in canConvertTag()
[all …]
/AOO42X/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/xslt/
H A DConverterCapabilitiesImpl.java43 public boolean canConvertTag(String tag) { in canConvertTag() argument
45 if (OfficeConstants.TAG_OFFICE_DOCUMENT.equals(tag)) in canConvertTag()
47 else if (OfficeConstants.TAG_OFFICE_DOCUMENT_CONTENT.equals(tag)) in canConvertTag()
49 else if (OfficeConstants.TAG_OFFICE_BODY.equals(tag)) in canConvertTag()
51 else if (OfficeConstants.TAG_PARAGRAPH.equals(tag)) in canConvertTag()
53 else if (OfficeConstants.TAG_HEADING.equals(tag)) in canConvertTag()
55 else if (OfficeConstants.TAG_ORDERED_LIST.equals(tag)) in canConvertTag()
57 else if (OfficeConstants.TAG_UNORDERED_LIST.equals(tag)) in canConvertTag()
59 else if (OfficeConstants.TAG_LIST_ITEM.equals(tag)) in canConvertTag()
61 else if (OfficeConstants.TAG_LIST_HEADER.equals(tag)) in canConvertTag()
[all …]
/AOO42X/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DConverterCapabilitiesImpl.java43 public boolean canConvertTag(String tag) { in canConvertTag() argument
45 if (OfficeConstants.TAG_OFFICE_DOCUMENT.equals(tag)) in canConvertTag()
47 else if (OfficeConstants.TAG_OFFICE_DOCUMENT_CONTENT.equals(tag)) in canConvertTag()
49 else if (OfficeConstants.TAG_OFFICE_BODY.equals(tag)) in canConvertTag()
51 else if (OfficeConstants.TAG_PARAGRAPH.equals(tag)) in canConvertTag()
53 else if (OfficeConstants.TAG_HEADING.equals(tag)) in canConvertTag()
55 else if (OfficeConstants.TAG_ORDERED_LIST.equals(tag)) in canConvertTag()
57 else if (OfficeConstants.TAG_UNORDERED_LIST.equals(tag)) in canConvertTag()
59 else if (OfficeConstants.TAG_LIST_ITEM.equals(tag)) in canConvertTag()
61 else if (OfficeConstants.TAG_LIST_HEADER.equals(tag)) in canConvertTag()
[all …]
/AOO42X/main/offapi/com/sun/star/smarttags/
H A DXSmartTagAction.idl61 /** provides access to smart tag actions.
93 /** the number of smart tag types supported by this action
100 /** obtains the name of one specific smart tag type supported by
104 Index of the wanted smart tag type. Value needs to be
109 an unique name of the smart tag type. Smart tag type
120 /** obtains the caption of the smart tag type for using in user
124 Index of the wanted smart tag type. Value needs to be
132 the caption associated with the smart tag type.
143 /** obtains the number of actions provided for a specific smart tag
147 Name of the wanted smart tag type. This is one of the
[all …]
H A DXSmartTagRecognizer.idl67 provides access to a smart tag recognizer.
99 /** The number of smart tag types supported by this recognizer
106 /** obtains the name of one specific smart tag type supported by
110 Index of the wanted smart tag type. Value needs to be
115 the unique name of the smart tag type. Smart tag type
130 Index of the wanted smart tag type. Value needs to be
187 /** indicates whether there is a property page for a smart tag type.
190 Index of the wanted smart tag type. Value needs to be
199 smart tag type and locale.
210 /** launches the property page for a smart tag type.
[all …]
/AOO42X/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/
H A DConverterCapabilitiesImpl.java44 public boolean canConvertTag(String tag) { in canConvertTag() argument
46 if (OfficeConstants.TAG_OFFICE_BODY.equals(tag)) in canConvertTag()
48 else if (OfficeConstants.TAG_PARAGRAPH.equals(tag)) in canConvertTag()
50 else if (OfficeConstants.TAG_TABLE.equals(tag)) in canConvertTag()
52 else if (OfficeConstants.TAG_TABLE_ROW.equals(tag)) in canConvertTag()
54 else if (OfficeConstants.TAG_TABLE_COLUMN.equals(tag)) in canConvertTag()
57 else if (OfficeConstants.TAG_TABLE_SCENARIO.equals(tag)) in canConvertTag()
60 else if (OfficeConstants.TAG_TABLE_CELL.equals(tag)) in canConvertTag()
66 public boolean canConvertAttribute(String tag, in canConvertAttribute() argument
69 if (OfficeConstants.TAG_TABLE.equals(tag)) { in canConvertAttribute()
[all …]
/AOO42X/main/xmerge/source/minicalc/java/org/openoffice/xmerge/converter/xml/sxc/minicalc/
H A DConverterCapabilitiesImpl.java44 public boolean canConvertTag(String tag) { in canConvertTag() argument
46 if (OfficeConstants.TAG_OFFICE_BODY.equals(tag)) in canConvertTag()
48 else if (OfficeConstants.TAG_PARAGRAPH.equals(tag)) in canConvertTag()
50 else if (OfficeConstants.TAG_TABLE.equals(tag)) in canConvertTag()
52 else if (OfficeConstants.TAG_TABLE_ROW.equals(tag)) in canConvertTag()
54 else if (OfficeConstants.TAG_TABLE_COLUMN.equals(tag)) in canConvertTag()
57 else if (OfficeConstants.TAG_TABLE_SCENARIO.equals(tag)) in canConvertTag()
60 else if (OfficeConstants.TAG_TABLE_CELL.equals(tag)) in canConvertTag()
66 public boolean canConvertAttribute(String tag, in canConvertAttribute() argument
69 if (OfficeConstants.TAG_TABLE.equals(tag)) { in canConvertAttribute()
[all …]
/AOO42X/main/qadevOOo/runner/util/
H A DXMLTools.java363 String tag = (String) tagStack.elementAt(i) ; in printError() local
364 log.println(" <" + tag + ">") ; in printError()
388 public void addTag(String tag) { in addTag() argument
389 tags.put(tag, "") ; in addTag()
395 public void addTagEnclosed(String tag, String outerTag) { in addTagEnclosed() argument
396 tags.put(tag, outerTag) ; in addTagEnclosed()
640 public void addTag(Tag tag) { in addTag() argument
641 tags.add(new Tag[] {tag, null}) ; in addTag()
642 tagSet.add(tag.name) ; in addTag()
645 public void addTagEnclosed(Tag tag, Tag outerTag) { in addTagEnclosed() argument
[all …]
/AOO42X/main/writerfilter/qa/cppunittests/xxml/
H A DtestXXML.cxx34 QName_t tag; member in Node
38 Node(QName_t tag) : prev(NULL), next(NULL), tag(tag) { in Node() argument
51 Table(QName_t tag):Node(tag) {}; in Table() argument
59 Row(QName_t tag, Table &parent) : Node(tag), parent(parent) {}; in Row() argument
67 Cell(QName_t tag, Row &parent) : Node(tag), parent(parent) {}; in Cell() argument
/AOO42X/main/desktop/source/deployment/misc/
H A Ddp_resource.cxx96 void checkPrimarySubtag(::rtl::OUString const & tag) in checkPrimarySubtag() argument
98 sal_Int32 len = tag.getLength(); in checkPrimarySubtag()
99 sal_Unicode const * arLang = tag.getStr(); in checkPrimarySubtag()
122 void checkSecondSubtag(::rtl::OUString const & tag, bool & bIsCountry) in checkSecondSubtag() argument
124 sal_Int32 len = tag.getLength(); in checkSecondSubtag()
125 sal_Unicode const * arLang = tag.getStr(); in checkSecondSubtag()
157 void checkThirdSubtag(::rtl::OUString const & tag) in checkThirdSubtag() argument
159 sal_Int32 len = tag.getLength(); in checkThirdSubtag()
160 sal_Unicode const * arLang = tag.getStr(); in checkThirdSubtag()
/AOO42X/main/icc/
H A DSampleICC-1.3.2.patch1265 - sprintf(buf," - %s: Invalid tag type (Might be critical!).\r\n", Info.GetTagTypeSigName(type…
1266 + sprintf(buf," - %s: Invalid tag type (Might be critical!).\n", Info.GetTagTypeSigName(typesi…
1292 - sReport += "Media white point tag missing.\r\n";
1293 + sReport += "Media white point tag missing.\n";
1301 - sReport += "Gray TRC tag missing.\r\n";
1302 + sReport += "Gray TRC tag missing.\n";
1310 - sReport += "Critical tag(s) missing.\r\n";
1311 + sReport += "Critical tag(s) missing.\n";
1319 - sReport += "Gray TRC tag missing.\r\n";
1320 + sReport += "Gray TRC tag missing.\n";
[all …]
/AOO42X/main/graphite/
H A Dgraphite-2.3.1.patch.mingw22 libgraphite_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
51 …@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CX…
54 +@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CX…
58 +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CX…
61 +@am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CX…
65 +@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CX…
/AOO42X/main/libxmlsec/
H A Dxmlsec1-mingw-keymgr-mscrypto.patch32 libxmlsec1_mscrypto_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
51 …@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC…
54 +@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(I…
58 +@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCL…
61 …@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC…
/AOO42X/main/redland/raptor/
H A Draptor-1.4.18.patch.mingw6 rdf_parsers_available="rdfxml ntriples turtle trig guess rss-tag-soup rdfa"
10 + rdf_parsers_available="rdfxml ntriples turtle trig guess rss-tag-soup"
21 rdf_parsers_available="rdfxml ntriples turtle trig guess rss-tag-soup rdfa"
25 + rdf_parsers_available="rdfxml ntriples turtle trig guess rss-tag-soup"
/AOO42X/main/reportbuilder/java/com/sun/star/report/pentaho/
H A Dconfiguration.properties123 com.sun.star.report.pentaho.output.tag.oasis-text.p=deny
124 com.sun.star.report.pentaho.output.tag.oasis-text.section=allow
125 com.sun.star.report.pentaho.output.tag.oasis-text.variable-decls=allow
126 com.sun.star.report.pentaho.output.tag.oasis-text.variable-decl=allow
128 com.sun.star.report.pentaho.output.tag.oasis-config.config-item=deny
132 com.sun.star.report.pentaho.output.tag.oasis-data.text=deny
133 com.sun.star.report.pentaho.output.tag.oasis-data.currency-symbol=deny
134 com.sun.star.report.pentaho.output.tag.oasis-data.embedded-text=deny
/AOO42X/main/dbaccess/source/ui/misc/
H A DTokenWriter.cxx727 #define TAG_ON( tag ) HTMLOutFuncs::Out_AsciiTag( (*m_pStream), tag ) argument
728 #define TAG_OFF( tag ) HTMLOutFuncs::Out_AsciiTag( (*m_pStream), tag, sal_False ) argument
732 #define TAG_ON_LF( tag ) (TAG_ON( tag ) << ODatabaseImportExport::sNewLine << GetIndentStr()) argument
733 #define TAG_OFF_LF( tag ) (TAG_OFF( tag ) << ODatabaseImportExport::sNewLine << GetIndentStr()) argument
/AOO42X/main/sc/source/filter/html/
H A Dhtmlexp.cxx129 #define TAG_ON( tag ) HTMLOutFuncs::Out_AsciiTag( rStrm, tag ) argument
130 #define TAG_OFF( tag ) HTMLOutFuncs::Out_AsciiTag( rStrm, tag, sal_False ) argument
135 #define TAG_ON_LF( tag ) (TAG_ON( tag ) << ScExportBase::sNewLine << GetIndentStr()) argument
136 #define TAG_OFF_LF( tag ) (TAG_OFF( tag ) << ScExportBase::sNewLine << GetIndentStr()) argument

123456