Home
last modified time | relevance | path

Searched refs:pBegin (Results 1 – 25 of 74) sorted by relevance

123

/trunk/main/tools/inc/tools/
H A Dinetmime.hxx454 static inline bool startsWithLineBreak(const sal_Char * pBegin,
457 static inline bool startsWithLineBreak(const sal_Unicode * pBegin,
460 static inline bool startsWithLineFolding(const sal_Char * pBegin,
463 static inline bool startsWithLineFolding(const sal_Unicode * pBegin,
466 static bool startsWithLinearWhiteSpace(const sal_Char * pBegin,
469 static const sal_Char * skipLinearWhiteSpace(const sal_Char * pBegin,
473 pBegin,
476 static const sal_Char * skipComment(const sal_Char * pBegin,
479 static const sal_Unicode * skipComment(const sal_Unicode * pBegin,
483 pBegin,
[all …]
/trunk/main/tools/source/inet/
H A Dinetmime.cxx63 void appendISO88591(UniString & rText, sal_Char const * pBegin,
197 void appendISO88591(UniString & rText, sal_Char const * pBegin, in appendISO88591() argument
200 xub_StrLen nLength = static_cast< xub_StrLen >(pEnd - pBegin); in appendISO88591()
202 for (sal_Unicode * p = pBuffer; pBegin != pEnd;) in appendISO88591()
203 *p++ = sal_uChar(*pBegin++); in appendISO88591()
582 const sal_Char * INetMIME::skipLinearWhiteSpace(const sal_Char * pBegin, in skipLinearWhiteSpace() argument
585 DBG_ASSERT(pBegin && pBegin <= pEnd, in skipLinearWhiteSpace()
588 while (pBegin != pEnd) in skipLinearWhiteSpace()
589 switch (*pBegin) in skipLinearWhiteSpace()
593 ++pBegin; in skipLinearWhiteSpace()
[all …]
/trunk/main/connectivity/source/drivers/jdbc/
H A Dtools.cxx114 const PropertyValue* pBegin = info.getConstArray(); in createStringPropertyArray() local
115 const PropertyValue* pEnd = pBegin + info.getLength(); in createStringPropertyArray()
117 for(;pBegin != pEnd;++pBegin) in createStringPropertyArray()
120 if ( pBegin->Name.compareToAscii( "JavaDriverClass" ) in createStringPropertyArray()
121 && pBegin->Name.compareToAscii( "JavaDriverClassPath" ) in createStringPropertyArray()
122 && pBegin->Name.compareToAscii( "SystemProperties" ) in createStringPropertyArray()
123 && pBegin->Name.compareToAscii( "CharSet" ) in createStringPropertyArray()
124 && pBegin->Name.compareToAscii( "AppendTableAliasName" ) in createStringPropertyArray()
125 && pBegin->Name.compareToAscii( "AddIndexAppendix" ) in createStringPropertyArray()
126 && pBegin->Name.compareToAscii( "FormsCheckRequiredFields" ) in createStringPropertyArray()
[all …]
/trunk/main/sal/rtl/source/
H A Duri.cxx117 sal_uInt32 readUcs4(sal_Unicode const ** pBegin, sal_Unicode const * pEnd, in readUcs4() argument
121 sal_uInt32 nChar = *(*pBegin)++; in readUcs4()
124 if (nChar == cEscapePrefix && bEncoded && pEnd - *pBegin >= 2 in readUcs4()
125 && (nWeight1 = getHexWeight((*pBegin)[0])) >= 0 in readUcs4()
126 && (nWeight2 = getHexWeight((*pBegin)[1])) >= 0) in readUcs4()
128 *pBegin += 2; in readUcs4()
157 sal_Unicode const * p = *pBegin; in readUcs4()
175 *pBegin = p; in readUcs4()
188 sal_Unicode const * p = *pBegin; in readUcs4()
208 *pBegin = p; in readUcs4()
[all …]
/trunk/main/connectivity/source/drivers/flat/
H A DEConnection.cxx78 const PropertyValue *pBegin = info.getConstArray(); in construct() local
79 const PropertyValue *pEnd = pBegin + info.getLength(); in construct()
80 for(;pBegin != pEnd;++pBegin) in construct()
82 if(!pBegin->Name.compareToAscii("HeaderLine")) in construct()
83 OSL_VERIFY( pBegin->Value >>= m_bHeaderLine ); in construct()
84 else if(!pBegin->Name.compareToAscii("FieldDelimiter")) in construct()
87 OSL_VERIFY( pBegin->Value >>= aVal ); in construct()
90 else if(!pBegin->Name.compareToAscii("StringDelimiter")) in construct()
93 OSL_VERIFY( pBegin->Value >>= aVal ); in construct()
96 else if(!pBegin->Name.compareToAscii("DecimalDelimiter")) in construct()
[all …]
H A DEResultSet.cxx92 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
93 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
94 for(;pBegin != pEnd;++pBegin) in getTypes()
96 if(!(*pBegin == ::getCppuType((const Reference<XDeleteRows>*)0) || in getTypes()
97 *pBegin == ::getCppuType((const Reference<XResultSetUpdate>*)0) || in getTypes()
98 *pBegin == ::getCppuType((const Reference<XRowUpdate>*)0))) in getTypes()
100 aOwnTypes.push_back(*pBegin); in getTypes()
H A DEDatabaseMetaData.cxx200 const ::rtl::OUString* pBegin = aColNames.getConstArray(); in getColumns() local
201 const ::rtl::OUString* pEnd = pBegin + aColNames.getLength(); in getColumns()
203 for(sal_Int32 i=1;pBegin != pEnd;++pBegin,++i) in getColumns()
205 if(match(columnNamePattern,*pBegin,'\0')) in getColumns()
207 aRow[4] = new ORowSetValueDecorator(*pBegin); in getColumns()
209 ::cppu::extractInterface(xColumn,xColumns->getByName(*pBegin)); in getColumns()
/trunk/main/connectivity/source/drivers/odbcbase/
H A DOConnection.cxx205 const PropertyValue *pBegin = info.getConstArray(); in Construct() local
206 const PropertyValue *pEnd = pBegin + info.getLength(); in Construct()
207 for(;pBegin != pEnd;++pBegin) in Construct()
209 if(!pBegin->Name.compareToAscii(pTimeout)) in Construct()
210 OSL_VERIFY( pBegin->Value >>= nTimeout ); in Construct()
211 else if(!pBegin->Name.compareToAscii(pSilent)) in Construct()
212 OSL_VERIFY( pBegin->Value >>= bSilent ); in Construct()
213 else if(!pBegin->Name.compareToAscii(pPrivName)) in Construct()
214 OSL_VERIFY( pBegin->Value >>= m_bIgnoreDriverPrivileges ); in Construct()
215 else if(!pBegin->Name.compareToAscii(pVerColName)) in Construct()
[all …]
/trunk/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/
H A DSConnection.cxx89 const PropertyValue *pBegin = info.getConstArray(); in construct() local
90 const PropertyValue *pEnd = pBegin + info.getLength(); in construct()
91 for(;pBegin != pEnd;++pBegin) in construct()
93 if(!pBegin->Name.compareToAscii(pTimeout)) in construct()
94 pBegin->Value >>= nTimeout; in construct()
95 else if(!pBegin->Name.compareToAscii(pSilent)) in construct()
96 pBegin->Value >>= bSilent; in construct()
97 else if(!pBegin->Name.compareToAscii(pUser)) in construct()
99 pBegin->Value >>= aUID; in construct()
102 else if(!pBegin->Name.compareToAscii(pPwd)) in construct()
[all …]
/trunk/main/dbaccess/source/core/api/
H A Dcolumn.cxx363 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
364 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
365 for (;pBegin != pEnd ; ++pBegin) in getTypes()
367 if(aAppendType == *pBegin) in getTypes()
369 else if(aDropType == *pBegin) in getTypes()
385 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
386 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
387 for(sal_Int32 i=0;pBegin != pEnd ;++pBegin) in getTypes()
389 if(*pBegin != aAppendType && *pBegin != aDropType) in getTypes()
390 aRet.getArray()[i++] = *pBegin; in getTypes()
[all …]
/trunk/main/connectivity/source/drivers/adabas/
H A DBConnection.cxx76 const PropertyValue *pBegin = info.getConstArray(); in Construct() local
77 const PropertyValue *pEnd = pBegin + info.getLength(); in Construct()
84 for(;pBegin != pEnd;++pBegin) in Construct()
86 if ( !pBegin->Name.compareToAscii("Timeout") ) in Construct()
87 pBegin->Value >>= nTimeout; in Construct()
88 else if(!pBegin->Name.compareToAscii("user")) in Construct()
89 pBegin->Value >>= aUID; in Construct()
90 else if(!pBegin->Name.compareToAscii("password")) in Construct()
91 pBegin->Value >>= aPWD; in Construct()
92 else if(!pBegin->Name.compareToAscii("HostName")) in Construct()
[all …]
/trunk/main/dbaccess/source/ui/browser/
H A Ddbloader.cxx140 const ::rtl::OUString * pBegin = aSNL.getConstArray(); in supportsService() local
141 const ::rtl::OUString * pEnd = pBegin + aSNL.getLength(); in supportsService()
142 for( ; pBegin != pEnd; ++pBegin) in supportsService()
143 if( *pBegin == ServiceName ) in supportsService()
307 Any* pBegin = aInitArgs.getArray(); in load() local
308 Any* pEnd = pBegin + aInitArgs.getLength(); in load()
309 *pBegin <<= aFrame; in load()
311 for(++pBegin;pBegin != pEnd;++pBegin,++pIter) in load()
313 *pBegin <<= *pIter; in load()
/trunk/main/ucb/source/regexp/
H A Dregexp.cxx66 bool matchStringIgnoreCase(sal_Unicode const ** pBegin, in matchStringIgnoreCase() argument
70 sal_Unicode const * p = *pBegin; in matchStringIgnoreCase()
90 *pBegin = p; in matchStringIgnoreCase()
99 sal_Unicode const * pBegin = rString.getStr(); in matches() local
100 sal_Unicode const * pEnd = pBegin + rString.getLength(); in matches()
104 sal_Unicode const * p = pBegin; in matches()
314 bool matchString(sal_Unicode const ** pBegin, sal_Unicode const * pEnd, in matchString() argument
317 sal_Unicode const * p = *pBegin; in matchString()
333 *pBegin = p; in matchString()
337 bool scanStringLiteral(sal_Unicode const ** pBegin, sal_Unicode const * pEnd, in scanStringLiteral() argument
[all …]
/trunk/main/connectivity/source/drivers/dbase/
H A DDDatabaseMetaData.cxx206 const ::rtl::OUString* pBegin = aColNames.getConstArray(); in getColumns() local
207 const ::rtl::OUString* pEnd = pBegin + aColNames.getLength(); in getColumns()
209 for(sal_Int32 i=1;pBegin != pEnd;++pBegin,++i) in getColumns()
211 if(match(columnNamePattern,*pBegin,'\0')) in getColumns()
213 aRow[4] = new ORowSetValueDecorator(*pBegin); in getColumns()
215 ::cppu::extractInterface(xColumn,xColumns->getByName(*pBegin)); in getColumns()
291 const ::rtl::OUString* pBegin = aIdxNames.getConstArray(); in getIndexInfo() local
292 const ::rtl::OUString* pEnd = pBegin + aIdxNames.getLength(); in getIndexInfo()
294 for(;pBegin != pEnd;++pBegin) in getIndexInfo()
296 ::cppu::extractInterface(xIndex,xIndexes->getByName(*pBegin)); in getIndexInfo()
[all …]
H A DDCode.cxx62 const ::rtl::OUString* pBegin = aSeq.getConstArray(); in OFILEOperandAttr() local
63 const ::rtl::OUString* pEnd = pBegin + aSeq.getLength(); in OFILEOperandAttr()
64 for(;pBegin != pEnd;++pBegin) in OFILEOperandAttr()
66 _xIndexes->getByName(*pBegin) >>= xIndex; in OFILEOperandAttr()
/trunk/main/connectivity/source/commontools/
H A DConnectionWrapper.cxx224 PropertyValue* pBegin = _rInfo.getArray(); in createUniqueId() local
225 PropertyValue* pEnd = pBegin + _rInfo.getLength(); in createUniqueId()
226 ::std::sort(pBegin,pEnd,TPropertyValueLessFunctor()); in createUniqueId()
228 pBegin = _rInfo.getArray(); in createUniqueId()
229 pEnd = pBegin + _rInfo.getLength(); in createUniqueId()
230 for (; pBegin != pEnd; ++pBegin) in createUniqueId()
234 if ( pBegin->Value >>= sValue ) in createUniqueId()
239 if ( pBegin->Value >>= nValue ) in createUniqueId()
244 if ( pBegin->Value >>= aSeq ) in createUniqueId()
/trunk/main/connectivity/source/drivers/file/
H A DFCatalog.cxx101 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
102 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
103 for(;pBegin != pEnd;++pBegin) in getTypes()
105 if(!(*pBegin == ::getCppuType((const Reference<XGroupsSupplier>*)0) || in getTypes()
106 *pBegin == ::getCppuType((const Reference<XUsersSupplier>*)0) || in getTypes()
107 *pBegin == ::getCppuType((const Reference<XViewsSupplier>*)0))) in getTypes()
109 aOwnTypes.push_back(*pBegin); in getTypes()
H A DFDatabaseMetaData.cxx203 const ::rtl::OUString* pBegin = types.getConstArray(); in getTables() local
204 const ::rtl::OUString* pEnd = pBegin + nLength; in getTables()
205 for(;pBegin != pEnd;++pBegin) in getTables()
207 if(*pBegin == aTable) in getTables()
420 const ::rtl::OUString* pBegin = aNames.getConstArray(); in getTablePrivileges() local
421 const ::rtl::OUString* pEnd = pBegin + aNames.getLength(); in getTablePrivileges()
422 for(;pBegin != pEnd;++pBegin) in getTablePrivileges()
424 if(match(tableNamePattern,pBegin->getStr(),'\0')) in getTablePrivileges()
428 aRow[2] = new ORowSetValueDecorator(*pBegin); in getTablePrivileges()
434 ::cppu::extractInterface(xTable,xNames->getByName(*pBegin)); in getTablePrivileges()
/trunk/main/sal/inc/rtl/
H A Dmath.hxx143 sal_Char const * pBegin = rString.getStr(); in stringToDouble() local
145 double fResult = rtl_math_stringToDouble(pBegin, in stringToDouble()
146 pBegin + rString.getLength(), in stringToDouble()
150 *pParsedEnd = (sal_Int32)(pEnd - pBegin); in stringToDouble()
162 sal_Unicode const * pBegin = rString.getStr(); in stringToDouble() local
164 double fResult = rtl_math_uStringToDouble(pBegin, in stringToDouble()
165 pBegin + rString.getLength(), in stringToDouble()
169 *pParsedEnd = (sal_Int32)(pEnd - pBegin); in stringToDouble()
/trunk/main/sfx2/source/appl/
H A Dhelpdispatch.cxx70 const PropertyValue* pBegin = aArgs.getConstArray(); in dispatch() local
71 const PropertyValue* pEnd = pBegin + aArgs.getLength(); in dispatch()
72 for ( ; pBegin != pEnd; ++pBegin ) in dispatch()
74 if ( 0 == ( *pBegin ).Name.compareToAscii( "HelpKeyword" ) ) in dispatch()
77 if ( ( ( *pBegin ).Value >>= sHelpKeyword ) && sHelpKeyword.getLength() > 0 ) in dispatch()
/trunk/main/dbaccess/source/filter/xml/
H A Ddbloader2.cxx211 const ::rtl::OUString * pBegin = aSNL.getConstArray(); in supportsService() local
212 const ::rtl::OUString * pEnd = pBegin + aSNL.getLength(); in supportsService()
213 for( ; pBegin != pEnd; ++pBegin) in supportsService()
214 if( *pBegin == ServiceName ) in supportsService()
310 const ::rtl::OUString * pBegin = aSNL.getConstArray(); in supportsService() local
311 const ::rtl::OUString * pEnd = pBegin + aSNL.getLength(); in supportsService()
312 for( ; pBegin != pEnd; ++pBegin) in supportsService()
313 if( *pBegin == ServiceName ) in supportsService()
/trunk/main/connectivity/source/drivers/mysql/
H A DYCatalog.cxx156 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
157 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
158 for(;pBegin != pEnd;++pBegin) in getTypes()
160 if ( !(*pBegin == ::getCppuType((const Reference<XGroupsSupplier>*)0))) in getTypes()
162 aOwnTypes.push_back(*pBegin); in getTypes()
/trunk/main/svl/source/misc/
H A Dadrparse.cxx118 static UniString reparse(sal_Unicode const * pBegin,
121 static UniString reparseComment(sal_Unicode const * pBegin,
330 UniString SvAddressParser_Impl::reparse(sal_Unicode const * pBegin, in reparse() argument
339 while (pBegin < pEnd) in reparse()
341 sal_Unicode cChar = *pBegin++; in reparse()
444 UniString SvAddressParser_Impl::reparseComment(sal_Unicode const * pBegin, in reparseComment() argument
448 while (pBegin < pEnd) in reparseComment()
450 sal_Unicode cChar = *pBegin++; in reparseComment()
452 cChar = *pBegin++; in reparseComment()
/trunk/main/connectivity/source/drivers/hsqldb/
H A DHCatalog.cxx148 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
149 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
150 for(;pBegin != pEnd;++pBegin) in getTypes()
152 if ( !(*pBegin == ::getCppuType((const Reference<XGroupsSupplier>*)0))) in getTypes()
154 aOwnTypes.push_back(*pBegin); in getTypes()
/trunk/main/tools/source/fsys/
H A Durlobj.cxx613 guessFSysStyleByCounting(sal_Unicode const * pBegin, in guessFSysStyleByCounting() argument
622 DBG_ASSERT(std::numeric_limits< sal_Int32 >::min() < pBegin - pEnd in guessFSysStyleByCounting()
623 && pEnd - pBegin <= std::numeric_limits< sal_Int32 >::max(), in guessFSysStyleByCounting()
634 while (pBegin != pEnd) in guessFSysStyleByCounting()
635 switch (*pBegin++) in guessFSysStyleByCounting()
2033 sal_Unicode const * pBegin = aSynExtURIRef.getStr(); in convertIntToExt() local
2034 sal_Unicode const * pEnd = pBegin + aSynExtURIRef.getLength(); in convertIntToExt()
2035 sal_Unicode const * p = pBegin; in convertIntToExt()
2041 aSynExtURIRef.replaceAt(0, p - pBegin, in convertIntToExt()
2061 sal_Unicode const * pBegin = aSynIntURIRef.getStr(); in convertExtToInt() local
[all …]

123