Home
last modified time | relevance | path

Searched refs:OOXMLValue (Results 1 – 8 of 8) sorted by relevance

/AOO41X/main/writerfilter/source/ooxml/
H A DOOXMLPropertySetImpl.hxx43 class OOXMLValue : public Value class
46 typedef boost::shared_ptr<OOXMLValue> Pointer_t;
47 OOXMLValue();
48 virtual ~OOXMLValue();
58 virtual OOXMLValue * clone() const;
67 mutable OOXMLValue::Pointer_t mpValue;
73 OOXMLPropertyImpl(Id id, OOXMLValue::Pointer_t pValue, Type_t eType);
89 class OOXMLBinaryValue : public OOXMLValue
99 virtual OOXMLValue * clone() const;
102 class OOXMLBooleanValue : public OOXMLValue
[all …]
H A DOOXMLPropertySetImpl.cxx56 OOXMLPropertyImpl::OOXMLPropertyImpl(Id id, OOXMLValue::Pointer_t pValue, in OOXMLPropertyImpl()
83 pResult = Value::Pointer_t(new OOXMLValue()); in getValue()
191 OOXMLValue::OOXMLValue() in OOXMLValue() function in writerfilter::ooxml::OOXMLValue
195 OOXMLValue::~OOXMLValue() in ~OOXMLValue()
199 bool OOXMLValue::getBool() const in getBool()
204 sal_Int32 OOXMLValue::getInt() const in getInt()
209 ::rtl::OUString OOXMLValue::getString() const in getString()
214 uno::Any OOXMLValue::getAny() const in getAny()
219 writerfilter::Reference<Properties>::Pointer_t OOXMLValue::getProperties() in getProperties()
224 writerfilter::Reference<Stream>::Pointer_t OOXMLValue::getStream() in getStream()
[all …]
H A DOOXMLFastContextHandler.cxx354 OOXMLValue::Pointer_t OOXMLFastContextHandler::getValue() const in getValue()
356 return OOXMLValue::Pointer_t(); in getValue()
428 OOXMLValue::Pointer_t pVal(getValue()); in toTag()
505 void OOXMLFastContextHandler::mark(const Id & rId, OOXMLValue::Pointer_t pVal) in mark()
538 OOXMLValue::Pointer_t pVal in sendTableDepth()
545 OOXMLValue::Pointer_t pVal in sendTableDepth()
688 (const Id & /*nId*/, OOXMLValue::Pointer_t /*pVal*/) in newProperty()
863 OOXMLValue::Pointer_t pValue(new OOXMLPropertySetValue(getPropertySet())); in propagateCharacterPropertiesAsSet()
964 OOXMLValue::Pointer_t pValue(new OOXMLPropertySetValue(getPropertySet())); in sendPropertiesWithId()
1036 void OOXMLFastContextHandler::setIDForXNoteStream(OOXMLValue::Pointer_t pValue) in setIDForXNoteStream()
[all …]
H A DOOXMLFastContextHandler.hxx119 virtual OOXMLValue::Pointer_t getValue() const;
136 virtual void newProperty(const Id & rId, OOXMLValue::Pointer_t pVal);
143 void mark(const Id & rId, OOXMLValue::Pointer_t pVal);
166 void setIDForXNoteStream(OOXMLValue::Pointer_t pValue);
303 virtual void newProperty(const Id & rId, OOXMLValue::Pointer_t pVal);
324 virtual OOXMLValue::Pointer_t getValue() const;
327 virtual void newProperty(const Id & nId, OOXMLValue::Pointer_t pVal);
378 virtual void setValue(OOXMLValue::Pointer_t pValue);
379 virtual OOXMLValue::Pointer_t getValue() const;
392 OOXMLValue::Pointer_t mpValue;
[all …]
H A DOOXMLFactory.cxx166 OOXMLValue::Pointer_t pValue(new OOXMLBooleanValue(aValue)); in attributes()
179 OOXMLValue::Pointer_t pValue(new OOXMLStringValue(aValue)); in attributes()
192 OOXMLValue::Pointer_t pValue(new OOXMLIntegerValue(aValue)); in attributes()
205 OOXMLValue::Pointer_t pValue(new OOXMLHexValue(aValue)); in attributes()
230 OOXMLValue::Pointer_t pValue(new OOXMLIntegerValue(nValue)); in attributes()
349 void OOXMLFactory_ns::attributeAction(OOXMLFastContextHandler *, Token_t, OOXMLValue::Pointer_t) in attributeAction()
H A DOOXMLFastHelper.hxx177 OOXMLValue::Pointer_t pVal(new T(rValue)); in newProperty()
206 OOXMLValue::Pointer_t pVal(new T(nVal)); in newProperty()
229 OOXMLValue::Pointer_t pVal(new T(rValue)); in mark()
H A DOOXMLDocumentImpl.cxx247 OOXMLValue::Pointer_t pPayloadValue(new OOXMLBinaryValue(pPicture)); in getPicturePropSet()
257 OOXMLValue::Pointer_t pBlipValue(new OOXMLPropertySetValue(pBlipSet)); in getPicturePropSet()
H A DOOXMLFactory.hxx111 …virtual void attributeAction(OOXMLFastContextHandler * pHandler, Token_t nToken, OOXMLValue::Point…