| /aoo41x/main/tools/inc/tools/ | 
| H A D | inetmime.hxx | 802 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in startsWithLineBreak() 805 	return pEnd - pBegin >= 2 && pBegin[0] == 0x0D && pBegin[1] == 0x0A;  in startsWithLineBreak() 813 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in startsWithLineBreak() 816 	return pEnd - pBegin >= 2 && pBegin[0] == 0x0D && pBegin[1] == 0x0A;  in startsWithLineBreak() 824 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in startsWithLineFolding() 827 	return pEnd - pBegin >= 3 && pBegin[0] == 0x0D && pBegin[1] == 0x0A  in startsWithLineFolding() 835 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in startsWithLineFolding() 838 	return pEnd - pBegin >= 3 && pBegin[0] == 0x0D && pBegin[1] == 0x0A  in startsWithLineFolding() 846 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in startsWithLinearWhiteSpace() 1024 	{ write(pBegin, pBegin + nLength); }  in write() [all …] 
 | 
| /aoo41x/main/tools/source/inet/ | 
| H A D | inetmime.cxx | 585 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipLinearWhiteSpace() 614 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipLinearWhiteSpace() 643 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipComment() 646 	if (pBegin != pEnd && *pBegin == '(')  in skipComment() 675 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipComment() 708 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipLinearWhiteSpaceComment() 748 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipLinearWhiteSpaceComment() 786 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipQuotedString() 815 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in skipQuotedString() 963 	DBG_ASSERT(pBegin && pBegin <= pEnd,  in scanQuotedBlock() [all …] 
 | 
| /aoo41x/main/connectivity/source/drivers/jdbc/ | 
| H A D | tools.cxx | 114 	const PropertyValue* pBegin	= info.getConstArray();  in createStringPropertyArray()  local 115 	const PropertyValue* pEnd	= pBegin + info.getLength();  in createStringPropertyArray() 117 	for(;pBegin != pEnd;++pBegin)  in createStringPropertyArray() 123 			&&  pBegin->Name.compareToAscii( "CharSet" )  in createStringPropertyArray() 125 			&&  pBegin->Name.compareToAscii( "AddIndexAppendix" )  in createStringPropertyArray() 128 			&&  pBegin->Name.compareToAscii( "EscapeDateTime" )  in createStringPropertyArray() 136 			&&  pBegin->Name.compareToAscii( "Extension" )  in createStringPropertyArray() 138 			&&  pBegin->Name.compareToAscii( "EnableSQL92Check" )  in createStringPropertyArray() 147             &&  pBegin->Name.compareToAscii( "UseJava" )  in createStringPropertyArray() 155 			OSL_VERIFY( pBegin->Value >>= aStr );  in createStringPropertyArray() [all …] 
 | 
| /aoo41x/main/sal/rtl/source/ | 
| H A D | uri.cxx | 121     sal_uInt32 nChar = *(*pBegin)++;  in readUcs4() 128         *pBegin += 2;  in readUcs4() 175                     *pBegin = p;  in readUcs4() 208                     *pBegin = p;  in readUcs4() 356     sal_Unicode const * pBegin;  member 359     inline Component(): pBegin(0) {}  in Component() 387     sal_Unicode const * pPos = pBegin;  in parseUriRef() 393                 pComponents->aScheme.pBegin = pBegin;  in parseUriRef() 411     pComponents->aPath.pBegin = pPos;  in parseUriRef() 460     aBuffer.append(rBasePath.pBegin, p - rBasePath.pBegin);  in joinPaths() [all …] 
 | 
| /aoo41x/main/connectivity/source/drivers/flat/ | 
| H A D | EConnection.cxx | 78     const PropertyValue *pBegin  = info.getConstArray();  in construct()  local 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() 99 			OSL_VERIFY( pBegin->Value >>= aVal );  in construct() 105 			OSL_VERIFY( pBegin->Value >>= aVal );  in construct() [all …] 
 | 
| H A D | EResultSet.cxx | 92 	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 D | EDatabaseMetaData.cxx | 200 			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()
  | 
| /aoo41x/main/connectivity/source/drivers/odbcbase/ | 
| H A D | OConnection.cxx | 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() 231 		else if(!pBegin->Name.compareToAscii(pUser))  in Construct() 233 			OSL_VERIFY( pBegin->Value >>= aUID );  in Construct() 236 		else if(!pBegin->Name.compareToAscii(pPwd))  in Construct() 238 			OSL_VERIFY( pBegin->Value >>= aPWD );  in Construct() 245 		else if(!pBegin->Name.compareToAscii(pSysDrv))  in Construct() [all …] 
 | 
| /aoo41x/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/ | 
| H A D | SConnection.cxx | 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() 104 			pBegin->Value >>= aPWD;  in construct() 109 			pBegin->Value >>= m_bUseCatalog;  in construct() [all …] 
 | 
| /aoo41x/main/dbaccess/source/core/api/ | 
| H A D | column.cxx | 363 		const Type* pBegin = aTypes.getConstArray();  in getTypes()  local 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 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() 391 		else if(bDropFound && *pBegin == aDropType)  in getTypes() 392 			aRet.getArray()[i++] = *pBegin;  in getTypes() [all …] 
 | 
| /aoo41x/main/connectivity/source/drivers/adabas/ | 
| H A D | BConnection.cxx | 76 	const PropertyValue *pBegin	= info.getConstArray();  in Construct()  local 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() 93 			pBegin->Value >>= sHostName;  in Construct() [all …] 
 | 
| /aoo41x/main/dbaccess/source/ui/browser/ | 
| H A D | dbloader.cxx | 140 	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()
  | 
| /aoo41x/main/ucb/source/regexp/ | 
| H A D | regexp.cxx | 66 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() 340 	sal_Unicode const * p = *pBegin;  in scanStringLiteral() [all …] 
 | 
| /aoo41x/main/connectivity/source/commontools/ | 
| H A D | ConnectionWrapper.cxx | 224 	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()
  | 
| /aoo41x/main/connectivity/source/drivers/file/ | 
| H A D | FCatalog.cxx | 101 	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 D | FDatabaseMetaData.cxx | 203 		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()
  | 
| /aoo41x/main/connectivity/source/drivers/dbase/ | 
| H A D | DDatabaseMetaData.cxx | 206 			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 D | DCode.cxx | 62 		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()
  | 
| /aoo41x/main/sal/inc/rtl/ | 
| H A D | math.hxx | 143     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()
  | 
| /aoo41x/main/sfx2/source/appl/ | 
| H A D | helpdispatch.cxx | 70 	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()
  | 
| /aoo41x/main/connectivity/source/drivers/mysql/ | 
| H A D | YCatalog.cxx | 156 	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()
  | 
| /aoo41x/main/dbaccess/source/filter/xml/ | 
| H A D | dbloader2.cxx | 211 	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()
  | 
| /aoo41x/main/connectivity/source/drivers/hsqldb/ | 
| H A D | HCatalog.cxx | 148 	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()
  | 
| /aoo41x/main/svl/source/misc/ | 
| H A D | adrparse.cxx | 118 	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()
  | 
| /aoo41x/main/tools/source/fsys/ | 
| H A D | urlobj.cxx | 634 	while (pBegin != pEnd)  in guessFSysStyleByCounting() 635 		switch (*pBegin++)  in guessFSysStyleByCounting() 2035 	sal_Unicode const * p = pBegin;  in convertIntToExt() 2063 	sal_Unicode const * p = pBegin;  in convertExtToInt() 2807     if (pBegin < pEnd)  in parseHostOrNetBiosName() 3410 	*pBegin = pPos;  in parsePath() 3732 	while (pBegin < pEnd)  in encodeText() 3754 			return rtl::OUString(pBegin, pEnd - pBegin);  in decode() 3764 	while (pBegin < pEnd)  in decode() 3886                     aSegment(decode(p + (p == pBegin && pBegin != pCoreBegin ?  in getAbbreviated() [all …] 
 |