| /AOO41X/main/sal/qa/OStringBuffer/ |
| H A D | rtl_OStringBuffer.cxx | 688 sal_Int32 input = 5; in ensureCapacity_001() local 690 aStrBuf.ensureCapacity( input ); in ensureCapacity_001() 704 sal_Int32 input = -5; in ensureCapacity_002() local 706 aStrBuf.ensureCapacity( input ); in ensureCapacity_002() 720 sal_Int32 input = 0; in ensureCapacity_003() local 722 aStrBuf.ensureCapacity( input ); in ensureCapacity_003() 736 sal_Int32 input = 20; in ensureCapacity_004() local 738 aStrBuf.ensureCapacity( input ); in ensureCapacity_004() 752 sal_Int32 input = 50; in ensureCapacity_005() local 754 aStrBuf.ensureCapacity( input ); in ensureCapacity_005() [all …]
|
| /AOO41X/main/xmlscript/source/xmldlg_imexp/ |
| H A D | imp_share.hxx | 62 css::uno::Reference< css::xml::input::XAttributes > const & xAttributes, in getBoolAttr() 90 css::uno::Reference< css::xml::input::XAttributes > const & xAttributes, in getStringAttr() 99 css::uno::Reference< css::xml::input::XAttributes > const & xAttributes, in getLongAttr() 115 : public ::cppu::WeakImplHelper1< css::xml::input::XRoot > 123 ::std::vector< css::uno::Reference< css::xml::input::XElement > > _styles; 146 css::uno::Reference< css::xml::input::XElement > const & xStyle ) 148 css::uno::Reference< css::xml::input::XElement > getStyle( 172 css::uno::Reference< css::xml::input::XNamespaceMapping > 183 virtual css::uno::Reference< css::xml::input::XElement > 186 css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) [all …]
|
| H A D | xmldlg_impmodels.cxx | 41 Reference< xml::input::XElement > ProgressBarElement::startChildElement( in startChildElement() 43 Reference< xml::input::XAttributes > const & xAttributes ) in startChildElement() 67 Reference< xml::input::XElement > xStyle( getStyle( _xAttributes ) ); in endElement() 97 Reference< xml::input::XElement > ScrollBarElement::startChildElement( in startChildElement() 99 Reference< xml::input::XAttributes > const & xAttributes ) in startChildElement() 122 Reference< xml::input::XElement > xStyle( getStyle( _xAttributes ) ); in endElement() 174 Reference< xml::input::XElement > FixedLineElement::startChildElement( in startChildElement() 176 Reference< xml::input::XAttributes > const & xAttributes ) in startChildElement() 199 Reference< xml::input::XElement > xStyle( getStyle( _xAttributes ) ); in endElement() 226 Reference< xml::input::XElement > PatternFieldElement::startChildElement( in startChildElement() [all …]
|
| H A D | xmldlg_import.cxx | 73 Reference< xml::input::XAttributes > const & xAttributes, in ControlElement() 93 Reference< xml::input::XElement > ControlElement::getStyle( in getStyle() 94 Reference< xml::input::XAttributes > const & xAttributes ) in getStyle() 104 return Reference< xml::input::XElement >(); in getStyle() 108 Reference< xml::input::XAttributes > const & xAttributes ) in getControlId() 787 Reference< xml::input::XAttributes > const & xAttributes ) in importStringProperty() 802 Reference< xml::input::XAttributes > const & xAttributes ) in importDoubleProperty() 817 Reference< xml::input::XAttributes > const & xAttributes ) in importBooleanProperty() 831 Reference< xml::input::XAttributes > const & xAttributes ) in importLongProperty() 847 Reference< xml::input::XAttributes > const & xAttributes ) in importLongProperty() [all …]
|
| /AOO41X/main/basegfx/source/tools/ |
| H A D | canvastools.cxx | 348 const geometry::AffineMatrix2D& input ) in homMatrixFromAffineMatrix() argument 353 output.set(0,0, input.m00); in homMatrixFromAffineMatrix() 354 output.set(0,1, input.m01); in homMatrixFromAffineMatrix() 355 output.set(0,2, input.m02); in homMatrixFromAffineMatrix() 356 output.set(1,0, input.m10); in homMatrixFromAffineMatrix() 357 output.set(1,1, input.m11); in homMatrixFromAffineMatrix() 358 output.set(1,2, input.m12); in homMatrixFromAffineMatrix() 363 ::basegfx::B2DHomMatrix homMatrixFromAffineMatrix( const geometry::AffineMatrix2D& input ) in homMatrixFromAffineMatrix() argument 367 output.set(0,0, input.m00); in homMatrixFromAffineMatrix() 368 output.set(0,1, input.m01); in homMatrixFromAffineMatrix() [all …]
|
| /AOO41X/main/io/test/stm/ |
| H A D | pipetest.cxx | 249 Reference< XInputStream > input( r , UNO_QUERY ); in testSimple() local 252 ERROR_ASSERT( input.is() , "queryInterface on XInputStream failed" ); in testSimple() 261 input->readBytes( seqRead , input->available() ); in testSimple() 265 ERROR_ASSERT( 0 == input->available() , in testSimple() 269 input->skipBytes( seqWrite.getLength() - 5 ); in testSimple() 270 ERROR_ASSERT( 0 == input->available() , "wrong available after skip" ); in testSimple() 274 ERROR_ASSERT( 5 == input->available() , "wrong available after skip/write " ); in testSimple() 276 input->readBytes( seqRead , 5 ); in testSimple() 284 ERROR_ASSERT( seqWrite.getLength() == input->available(), "wrong available() after write" ); in testSimple() 286 ERROR_ASSERT( 10 == input->readSomeBytes( seqRead , 10 ) , "maximal number of bytes ignored" ); in testSimple() [all …]
|
| /AOO41X/main/extensions/test/stm/ |
| H A D | pipetest.cxx | 252 XInputStreamRef input( r , USR_QUERY ); in testSimple() local 255 ERROR_ASSERT( input.is() , "queryInterface on XInputStream failed" ); in testSimple() 264 input->readBytes( seqRead , input->available() ); in testSimple() 268 ERROR_ASSERT( 0 == input->available() , in testSimple() 272 input->skipBytes( seqWrite.getLen() - 5 ); in testSimple() 273 ERROR_ASSERT( 0 == input->available() , "wrong available after skip" ); in testSimple() 277 ERROR_ASSERT( 5 == input->available() , "wrong available after skip/write " ); in testSimple() 279 input->readBytes( seqRead , 5 ); in testSimple() 287 ERROR_ASSERT( seqWrite.getLen() == input->available(), "wrong available() after write" ); in testSimple() 289 ERROR_ASSERT( 10 == input->readSomeBytes( seqRead , 10 ) , "maximal number of bytes ignored" ); in testSimple() [all …]
|
| /AOO41X/main/xmlscript/source/xmllib_imexp/ |
| H A D | imp_share.hxx | 65 Reference< xml::input::XAttributes > const & xAttributes, sal_Int32 uid ) in getBoolAttr() 95 Reference< xml::input::XAttributes > const & xAttributes, sal_Int32 uid ) in getStringAttr() 103 Reference< xml::input::XAttributes > const & xAttributes, in getLongAttr() 121 : public ::cppu::WeakImplHelper1< xml::input::XRoot > 147 Reference< xml::input::XNamespaceMapping > const & xNamespaceMapping ) 157 virtual Reference< xml::input::XElement > SAL_CALL startRootElement( 159 Reference< xml::input::XAttributes > const & xAttributes ) 165 : public ::cppu::WeakImplHelper1< xml::input::XElement > 172 Reference< xml::input::XAttributes > _xAttributes; 177 Reference< xml::input::XAttributes > const & xAttributes, [all …]
|
| H A D | xmllib_import.cxx | 42 Reference< xml::input::XElement > LibElementBase::getParent() in getParent() 45 return static_cast< xml::input::XElement * >( _pParent ); in getParent() 60 Reference< xml::input::XAttributes > LibElementBase::getAttributes() in getAttributes() 91 Reference< xml::input::XElement > LibElementBase::startChildElement( in startChildElement() 93 Reference< xml::input::XAttributes > const & /*xAttributes*/ ) in startChildElement() 104 Reference< xml::input::XAttributes > const & xAttributes, in LibElementBase() 142 Reference< xml::input::XNamespaceMapping > const & xNamespaceMapping ) in startDocument() 168 Reference< xml::input::XElement > LibraryImport::startRootElement( in startRootElement() 170 Reference< xml::input::XAttributes > const & xAttributes ) in startRootElement() 226 Reference< xml::input::XElement > LibrariesElement::startChildElement( in startChildElement() [all …]
|
| /AOO41X/main/ |
| H A D | rat-excludes | 28 main/testautomation/writer/optional/input/clipboard/dummy.txt 65 main/testautomation/graphics/required/input/einfg.ini 70 main/testautomation/writer/optional/input/export/filter/act_1.all 104 main/testautomation/dbaccess/optional/input/text_datasource/TT_Query1.txt 105 main/testautomation/dbaccess/optional/input/text_datasource/text_database.txt 106 main/testautomation/extensions/optional/input/files.txt 107 main/testautomation/framework/optional/input/extras_formats/Tables_calc_en-US.txt 108 main/testautomation/framework/optional/input/extras_formats/Tables_writer_en-US.txt 109 main/testautomation/framework/optional/input/options/paths_1.txt 110 main/testautomation/global/input/filters/graphic_filters.txt [all …]
|
| /AOO41X/main/xmlscript/source/xmlflat_imexp/ |
| H A D | xmlbas_import.cxx | 50 const Reference< xml::input::XAttributes >& xAttributes, in BasicElementBase() 76 … const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes, in getBoolAttr() 109 Reference< xml::input::XElement > BasicElementBase::getParent() in getParent() 112 return static_cast< xml::input::XElement* >( m_pParent ); in getParent() 136 Reference< xml::input::XAttributes > BasicElementBase::getAttributes() in getAttributes() 144 Reference< xml::input::XElement > BasicElementBase::startChildElement( in startChildElement() 146 const Reference< xml::input::XAttributes >& /*xAttributes*/ ) in startChildElement() 189 const Reference< xml::input::XAttributes >& xAttributes, in BasicLibrariesElement() 201 Reference< xml::input::XElement > BasicLibrariesElement::startChildElement( in startChildElement() 203 const Reference< xml::input::XAttributes >& xAttributes ) in startChildElement() [all …]
|
| H A D | xmlbas_import.hxx | 54 ::com::sun::star::xml::input::XElement > BasicElementBase_BASE; 62 ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes > m_xAttributes; 65 … const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes, 70 … const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes, 75 …virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL getPar… 81 …virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes > SAL_CALL get… 83 …virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL startC… 85 … const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes ) 111 … const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes, 116 …virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL startC… [all …]
|
| /AOO41X/main/toolkit/source/layout/core/ |
| H A D | import.hxx | 136 class ImportContext : public ::cppu::WeakImplHelper1< css::xml::input::XRoot > 149 css::uno::Reference< css::xml::input::XNamespaceMapping > 163 virtual css::uno::Reference< css::xml::input::XElement > 166 css::uno::Reference<css::xml::input::XAttributes > const & xAttributes ) 170 class ElementBase : public ::cppu::WeakImplHelper1< css::xml::input::XElement > 179 css::uno::Reference< css::xml::input::XAttributes > mxAttributes; 183 css::uno::Reference< css::xml::input::XAttributes > const & xAttributes, 189 virtual css::uno::Reference<css::xml::input::XElement> SAL_CALL getParent() in getParent() 191 { return static_cast< css::xml::input::XElement * >( mpParent ); } in getParent() 196 virtual css::uno::Reference< css::xml::input::XAttributes > [all …]
|
| /AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ |
| H A D | ExtendedFormat.java | 321 public int read(InputStream input) throws IOException { in read() argument 323 int numOfBytesRead = input.read(ixfnt); in read() 324 numOfBytesRead += input.read(ixnf); in read() 325 numOfBytesRead += input.read(fattributes); in read() 326 numOfBytesRead += input.read(fBaseAttr); in read() 327 numOfBytesRead += input.read(fTextAttr); in read() 328 numOfBytesRead += input.read(icvFore); in read() 329 numOfBytesRead += input.read(icvFill); in read() 330 bRight = (byte) input.read(); in read() 331 bTop = (byte) input.read(); in read() [all …]
|
| H A D | FontDescription.java | 228 public int read(InputStream input) throws IOException { in read() argument 230 int numOfBytesRead = input.read(dwHeight); in read() 231 numOfBytesRead += input.read(grbit); in read() 232 numOfBytesRead += input.read(icvFore); in read() 233 numOfBytesRead += input.read(bls); in read() 234 numOfBytesRead += input.read(Reserved2); in read() 235 uls = (byte) input.read(); in read() 236 bFamily = (byte) input.read(); in read() 237 bCharSet = (byte) input.read(); in read() 238 Reserved3 = (byte) input.read(); in read() [all …]
|
| H A D | Selection.java | 105 public int read(InputStream input) throws IOException { in read() argument 107 int numOfBytesRead = input.read(rwTop); in read() 108 colLeft += (byte) input.read(); in read() 109 numOfBytesRead += input.read(rwBottom); in read() 110 colRight += (byte) input.read(); in read() 111 numOfBytesRead += input.read(rwActive); in read() 112 colActive += (byte) input.read(); in read()
|
| /AOO41X/main/xmlscript/source/xmlmod_imexp/ |
| H A D | imp_share.hxx | 56 : public ::cppu::WeakImplHelper1< xml::input::XRoot > 75 Reference< xml::input::XNamespaceMapping > const & xNamespaceMapping ) 85 virtual Reference< xml::input::XElement > SAL_CALL startRootElement( 87 Reference< xml::input::XAttributes > const & xAttributes ) 93 : public ::cppu::WeakImplHelper1< xml::input::XElement > 100 Reference< xml::input::XAttributes > _xAttributes; 106 Reference< xml::input::XAttributes > const & xAttributes, 113 virtual Reference< xml::input::XElement > SAL_CALL getParent() 119 virtual Reference< xml::input::XAttributes > SAL_CALL getAttributes() 131 virtual Reference< xml::input::XElement > SAL_CALL startChildElement( [all …]
|
| H A D | xmlmod_import.cxx | 42 Reference< xml::input::XElement > ModuleElement::getParent() in getParent() 45 return static_cast< xml::input::XElement * >( _pParent ); in getParent() 60 Reference< xml::input::XAttributes > ModuleElement::getAttributes() in getAttributes() 91 Reference< xml::input::XElement > ModuleElement::startChildElement( in startChildElement() 93 Reference< xml::input::XAttributes > const & /*xAttributes*/ ) in startChildElement() 104 Reference< xml::input::XAttributes > const & xAttributes, in ModuleElement() 142 Reference< xml::input::XNamespaceMapping > const & xNamespaceMapping ) in startDocument() 172 Reference< xml::input::XElement > ModuleImport::startRootElement( in startRootElement() 174 Reference< xml::input::XAttributes > const & xAttributes ) in startRootElement() 222 static_cast< xml::input::XRoot * >( new ModuleImport( rMod ) ) ); in importScriptModule()
|
| /AOO41X/main/extensions/source/oooimprovement/ |
| H A D | soaprequest.cxx | 52 static unsigned long asUlong(sal_Int8 input) in asUlong() argument 54 return *reinterpret_cast<unsigned char *>(&input); in asUlong() 57 static Sequence<sal_Int8> base64_encode(const Sequence<sal_Int8>& input) in base64_encode() argument 61 unsigned long value = asUlong(input[0]) << 16; in base64_encode() 62 if(input.getLength() > 1) value |= asUlong(input[1]) << 8; in base64_encode() 63 if(input.getLength() > 2) value |= asUlong(input[2]); in base64_encode() 70 if (input.getLength() > 1) in base64_encode() 73 if (input.getLength() > 2) in base64_encode() 90 static OString xmlEncode(const OString& input) in xmlEncode() argument 92 OString result = replaceAll(input, '&', OString("&")); in xmlEncode()
|
| /AOO41X/main/reportbuilder/java/com/sun/star/report/ |
| H A D | StorageRepository.java | 60 private XStorage input; field in StorageRepository 71 public StorageRepository(final XStorage input, final XStorage output, final String rootURL) in StorageRepository() argument 73 this.input = input; in StorageRepository() 88 this.input = storage; in StorageRepository() 94 if (input == null) in createInputStream() 100 …final XStream xStream = (XStream) UnoRuntime.queryInterface(XStream.class, input.openStreamElement… in createInputStream() 181 if (input != null) in isReadable() 183 return input.isStreamElement(name); in isReadable() 206 if (!input.isStorageElement(temp)) in openInputRepository() 210 …final XStorage storage = (XStorage) UnoRuntime.queryInterface(XStorage.class, input.openStorageEle… in openInputRepository() [all …]
|
| /AOO41X/main/jurt/com/sun/star/lib/uno/protocols/urp/ |
| H A D | Unmarshal.java | 52 return input.readUnsignedByte(); in read8Bit() 60 return input.readUnsignedShort(); in read16Bit() 198 return input.available() > 0; in hasMore() 205 input = new DataInputStream(new ByteArrayInputStream(data)); in reset() 210 return input.readBoolean() ? Boolean.TRUE : Boolean.FALSE; in readBooleanValue() 218 return new Byte(input.readByte()); in readByteValue() 226 return new Short(input.readShort()); in readShortValue() 234 return new Integer(input.readInt()); in readLongValue() 242 return new Long(input.readLong()); in readHyperValue() 250 return new Float(input.readFloat()); in readFloatValue() [all …]
|
| /AOO41X/main/xmlscript/source/xml_helper/ |
| H A D | xml_impctx.cxx | 85 Reference< xml::input::XElement > m_xElement; 110 xml::input::XNamespaceMapping, 115 Reference< xml::input::XRoot > m_xRoot; 135 inline Reference< xml::input::XElement > getCurrentElement() const; 149 Reference< xml::input::XRoot > const & xRoot, 201 Reference< xml::input::XRoot > const & xRoot, in DocumentHandlerImpl() 235 inline Reference< xml::input::XElement > 240 return Reference< xml::input::XElement >(); in getCurrentElement() 353 public ::cppu::WeakImplHelper1< xml::input::XAttributes > 478 Reference< xml::input::XRoot > xRoot; in initialize() [all …]
|
| /AOO41X/main/solenv/bin/ |
| H A D | exectest.pl | 29 $input = 0; 34 $input = 0; 39 $input = 1; 45 $eof = $input ? eof INPUT : $open; 46 $in = <INPUT> if $input && !$eof; 47 if (!$input || $eof 77 $expect = $1 if $input; 89 elsif ($open && $input)
|
| /AOO41X/main/qadevOOo/runner/helper/ |
| H A D | SimpleMailSender.java | 106 BufferedReader input = in sendMail() local 113 sendline(input, output, "HELO " + getHostName()); in sendMail() 114 sendline(input, output, "MAIL FROM: " + m_Sender); in sendMail() 115 sendline(input, output, "RCPT TO: <" + m_Recipient + ">"); in sendMail() 116 sendline(input, output, "DATA"); in sendMail() 127 sendline(input, output, "."); in sendMail() 128 sendline(input, output, "QUIT"); in sendMail() 135 private void sendline(BufferedReader input, in sendline() argument 140 line = input.readLine(); in sendline()
|
| /AOO41X/main/reportbuilder/java/com/sun/star/report/pentaho/parser/stylemapper/style/ |
| H A D | FontFamilyGenericMapper.java | 27 import org.jfree.layouting.input.style.CSSDeclarationRule; 28 import org.jfree.layouting.input.style.keys.font.FontStyleKeys; 29 import org.jfree.layouting.input.style.values.CSSStringType; 30 import org.jfree.layouting.input.style.values.CSSStringValue; 31 import org.jfree.layouting.input.style.values.CSSValue; 32 import org.jfree.layouting.input.style.values.CSSValueList;
|