Home
last modified time | relevance | path

Searched refs:pos (Results 76 – 100 of 412) sorted by relevance

12345678910>>...17

/trunk/main/extensions/source/update/check/
H A Dupdateinfo.hxx48 ReleaseNote(sal_uInt8 pos, const rtl::OUString aURL) : Pos(pos), URL(aURL), Pos2(0), URL2() {}; in ReleaseNote()
49 …ReleaseNote(sal_uInt8 pos, const rtl::OUString aURL, sal_uInt8 pos2, const rtl::OUString aURL2) : … in ReleaseNote()
80 rtl::OUString getReleaseNote(const UpdateInfo& rInfo, sal_uInt8 pos, bool autoDownloadEnabled=false…
/trunk/main/migrationanalysis/src/wizard/
H A DIniSupport.bas138 Dim pos As Long variable
141 pos = InStr(1, startStrg, Chr$(0))
143 If pos Then
145 item = Mid$(startStrg, 1, pos - 1)
146 startStrg = Mid$(startStrg, pos + 1, Len(startStrg))
/trunk/main/xmlhelp/source/cxxhelp/provider/
H A Durlparameter.cxx408 int len,pos; member in InputStreamTransformer
894 pos( 0 ), in InputStreamTransformer()
1137 int curr,available_ = len-pos; in readBytes()
1147 aData[k] = buffer[pos++]; in readBytes()
1170 while( nBytesToSkip-- ) ++pos; in skipBytes()
1180 return len-pos > 0 ? len - pos : 0 ; in available()
1201 pos = sal::static_int_cast<sal_Int32>( location ); in seek()
1203 if( pos > len ) in seek()
1204 pos = len; in seek()
1213 return sal_Int64( pos ); in getPosition()
/trunk/main/cppuhelper/source/
H A Dfindsofficepath.c161 int pos; in platformSpecific() local
191 pos = sep - resolved; in platformSpecific()
192 path = (char*) malloc( pos + 1 ); in platformSpecific()
193 strncpy( path, resolved, pos ); in platformSpecific()
194 path[ pos ] = '\0'; in platformSpecific()
/trunk/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DUnoUrl.java261 int pos = 0; in buildParamHashMap() local
268 while ((pos < paramString.length()) in buildParamHashMap()
269 && ((c = paramString.charAt(pos++)) != '=')) { in buildParamHashMap()
273 while ((pos < paramString.length()) in buildParamHashMap()
274 && ((c = paramString.charAt(pos++)) != ',') in buildParamHashMap()
296 if ((pos >= paramString.length()) || (c != ',')) in buildParamHashMap()
/trunk/main/shell/source/win32/shlxthandler/infotips/
H A Dinfotips.cxx176 int pos=decimal % 3; in formatSizeOfFile() local
177 ::std::wstring wsBuffer = wsTemp.substr( 0,pos); in formatSizeOfFile()
180 for (;decimal - pos > 2;pos += 3) in formatSizeOfFile()
182 if (pos) in formatSizeOfFile()
184 wsBuffer.append( wsTemp.substr( pos, 3) ); in formatSizeOfFile()
/trunk/main/canvas/source/vcl/
H A Dcanvashelper.cxx1142 const geometry::IntegerPoint2D& pos ) in setPixel() argument
1155 ENSURE_ARG_OR_THROW( pos.X >= 0 && pos.X < aBmpSize.Width(), in setPixel()
1157 ENSURE_ARG_OR_THROW( pos.Y >= 0 && pos.Y < aBmpSize.Height(), in setPixel()
1170 rOutDev.DrawPixel( ::vcl::unotools::pointFromIntegerPoint2D( pos ), in setPixel()
1175 const geometry::IntegerPoint2D& pos ) in getPixel() argument
1193 ENSURE_ARG_OR_THROW( pos.X >= 0 && pos.X < aBmpSize.Width(), in getPixel()
1195 ENSURE_ARG_OR_THROW( pos.Y >= 0 && pos.Y < aBmpSize.Height(), in getPixel()
1201 ::vcl::unotools::pointFromIntegerPoint2D( pos ))); in getPixel()
/trunk/main/vcl/unx/gtk/a11y/
H A Datkeditabletext.cxx109 gint *pos ) in editable_text_wrapper_insert_text() argument
116 if( pEditableText->insertText( aString, *pos ) ) in editable_text_wrapper_insert_text()
117 *pos += length; in editable_text_wrapper_insert_text()
157 gint pos ) in editable_text_wrapper_paste_text() argument
162 pEditableText->pasteText( pos ); in editable_text_wrapper_paste_text()
/trunk/main/svtools/source/dialogs/
H A Droadmapwizard.cxx618 StateDescriptions::const_iterator pos = m_pImpl->aStateDescriptors.find( _nState ); in getStateDisplayName() local
619 OSL_ENSURE( pos != m_pImpl->aStateDescriptors.end(), in getStateDisplayName()
621 if ( pos != m_pImpl->aStateDescriptors.end() ) in getStateDisplayName()
622 sDisplayName = pos->second.first; in getStateDisplayName()
632 StateDescriptions::const_iterator pos = m_pImpl->aStateDescriptors.find( _nState ); in createPage() local
633 OSL_ENSURE( pos != m_pImpl->aStateDescriptors.end(), in createPage()
635 if ( pos != m_pImpl->aStateDescriptors.end() ) in createPage()
637 RoadmapPageFactory pFactory = pos->second.second; in createPage()
/trunk/main/comphelper/source/property/
H A Dpropertycontainerhelper.cxx181 ConstPropertiesIterator pos = ::std::find_if( in isRegisteredProperty() local
186 return pos != m_aProperties.end(); in isRegisteredProperty()
219 PropertiesIterator pos = ::std::lower_bound( in implPushBackProperty() local
223 m_aProperties.insert( pos, _rProp ); in implPushBackProperty()
482 ConstPropertiesIterator pos = ::std::find_if( in getProperty() local
487 if ( pos == m_aProperties.end() ) in getProperty()
490 return pos->aProperty; in getProperty()
/trunk/main/scripting/java/org/openoffice/netbeans/editor/
H A DNetBeansSourceView.java132 int pos = -1; in scrollToLine() local
135 pos = Utilities.getRowStartFromLineOffset(doc, line); in scrollToLine()
138 if (pos != -1) { in scrollToLine()
142 bCaret.setDot(pos, bCaret, EditorUI.SCROLL_FIND); in scrollToLine()
145 caret.setDot(pos); in scrollToLine()
/trunk/main/vcl/source/helper/
H A Dcanvasbitmap.cxx571 … const geometry::IntegerPoint2D& pos ) throw (lang::IndexOutOfBoundsException, in getPixel() argument
585 if( pos.X < 0 || pos.Y < 0 || in getPixel()
586 pos.X > m_pBmpAcc->Width() || pos.Y > m_pBmpAcc->Height() ) in getPixel()
599 const long nScanlineLeftOffset( pos.X*m_nBitsPerInputPixel/8 ); in getPixel()
605 Scanline pScan = m_pBmpAcc->GetScanline(pos.Y); in getPixel()
621 *pOutBuf++ = m_pBmpAcc->GetPixelIndex(pos.Y,pos.X); in getPixel()
622 *pOutBuf = m_pAlphaAcc->GetPixelIndex(pos.Y,pos.X); in getPixel()
627 Scanline pScan = m_pBmpAcc->GetScanline(pos.Y); in getPixel()
632 *pOutBuf++ = m_pAlphaAcc->GetPixelIndex(pos.Y,pos.X); in getPixel()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/document/
H A D_XMimeTypeInfo.java73 boolean pos = false; in _supportsMimeType()
74 pos = oObj.supportsMimeType(smi[0]); in _supportsMimeType()
75 if (!pos) { in _supportsMimeType()
83 tRes.tested("supportsMimeType()", (pos && !neg)) ; in _supportsMimeType()
/trunk/main/desktop/source/deployment/manager/
H A Ddp_commandenvironments.cxx106 for ( sal_Int32 pos = 0; pos < len; ++pos ) in handle_() local
110 pConts[ pos ], uno::UNO_QUERY ); in handle_()
119 pConts[ pos ], uno::UNO_QUERY ); in handle_()
/trunk/main/sw/qa/core/
H A Dbigpointerarray-new.hxx92 void Insert(const ElementPtr& rElem, sal_uLong pos);
105 void Remove(sal_uLong pos, sal_uLong n = 1);
128 void Replace(sal_uLong pos, const ElementPtr& rElem);
137 ElementPtr operator[](sal_uLong pos) const;
/trunk/main/slideshow/source/engine/transitions/
H A Dwaterfallwipe.cxx46 for ( sal_Int32 pos = sqrtElements; pos--; ) in WaterfallWipe() local
48 const sal_Int32 xPos = (sqrtElements - pos - 1); in WaterfallWipe()
49 const double yPos = ::basegfx::pruneScaleValue( ((pos + 1) * elementEdge) - 1.0 ); in WaterfallWipe()
H A Dzigzagwipe.cxx46 for ( sal_Int32 pos = (nZigs + 2); pos--; ) { in ZigZagWipe() local
47 m_stdZigZag.append( ::basegfx::B2DPoint( 0.0, ((pos - 1) * d) + d2 ) ); in ZigZagWipe()
48 m_stdZigZag.append( ::basegfx::B2DPoint( -d, (pos - 1) * d ) ); in ZigZagWipe()
H A Dfigurewipe.cxx106 for ( sal_Int32 pos = 0; pos < nPoints; ++pos ) { in createStarWipe() local
107 const double w = (pos * 2.0 * M_PI / nPoints); in createStarWipe()
/trunk/main/desktop/source/deployment/misc/
H A Ddp_update.cxx221 for (int pos = seqAllExt.getLength(); pos --; ) in onlyBundledExtensions() local
223 if (!containsBundledOnly(seqAllExt[pos])) in onlyBundledExtensions()
390 for (int pos = seqAllExt.getLength(); pos --; ) in getOnlineUpdateInfos() local
392 uno::Sequence<Reference<deployment::XPackage> > const & seqExt = seqAllExt[pos]; in getOnlineUpdateInfos()
/trunk/main/l10ntools/source/
H A Dtreeconfig.cxx78 string::size_type pos = pwd.find_first_of( source_root ); in getActiveRepositories() local
79 …if( pos != string::npos && ( pos + source_root.length() +1 ) < pwd.length()){ // I am within SOUR… in getActiveRepositories()
80 partial = pwd.substr( pos + source_root.length() +1 , pwd.length()); in getActiveRepositories()
/trunk/main/connectivity/source/drivers/hsqldb/
H A Daccesslog.hxx117 sal_Int64 seek( sal_Int64 pos ) in seek() argument
121 if ( ftell( pFile ) < pos ) in seek()
124 while ( ftell( pFile ) < pos ) in seek()
128 fseek( pFile, pos, SEEK_SET ); in seek()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/
H A D_XDocumentAuditing.java56 Point pos = null; field in _XDocumentAuditing
149 Point p0 = pos; in _refreshArrows()
161 Point p1 = pos; in _refreshArrows()
172 Point p2 = pos; in _refreshArrows()
200 pos = xShape.getPosition(); in hasRightAmountOfShapes()
/trunk/main/dbaccess/source/core/dataaccess/
H A DModelImpl.cxx314 …NamedStorages::const_iterator pos = m_aExposedStorages.find( ::rtl::OUString( RTL_CONSTASCII_USTRI… in commitEmbeddedStorage() local
315 if ( pos != m_aExposedStorages.end() ) in commitEmbeddedStorage()
316 bSuccess = tools::stor::commitStorageIfWriteable( pos->second ); in commitEmbeddedStorage()
334 NamedStorages::iterator pos = m_aExposedStorages.find( aStorageName ); in getDocumentSubStorage() local
335 if ( pos == m_aExposedStorages.end() ) in getDocumentSubStorage()
338 pos = m_aExposedStorages.insert( NamedStorages::value_type( aStorageName, xResult ) ).first; in getDocumentSubStorage()
341 return pos->second; in getDocumentSubStorage()
384 …NamedStorages::const_iterator pos = m_aExposedStorages.find( ::rtl::OUString( RTL_CONSTASCII_USTRI… in commited() local
385 if ( ( pos != m_aExposedStorages.end() ) in commited()
386 && ( pos->second == xStorage ) in commited()
/trunk/main/soltools/inc/
H A Dsimstr.hxx127 int pos,
134 int pos,
142 int pos,
161 int pos,
/trunk/main/connectivity/source/commontools/
H A DCommonTools.cxx61 int pos=0; in match() local
76 if ( !pos ) in match()
79 pWild += pos; in match()
89 pos = 0; in match()
112 pos--; in match()

Completed in 256 milliseconds

12345678910>>...17