Home
last modified time | relevance | path

Searched refs:temp (Results 26 – 50 of 183) sorted by relevance

12345678

/aoo41x/main/framework/source/fwe/xml/
H A Deventsdocumenthandler.cxx136 ::rtl::OUString temp( aNamespaceEvent ); in OReadEventsDocumentHandler()
137 temp += aSeparator; in OReadEventsDocumentHandler()
138 temp += ::rtl::OUString::createFromAscii( EventEntries[i].aEntryName ); in OReadEventsDocumentHandler()
139 m_aEventsMap.insert( EventsHashMap::value_type( temp, (Events_XML_Entry)i ) ); in OReadEventsDocumentHandler()
143 ::rtl::OUString temp( aNamespaceXLink ); in OReadEventsDocumentHandler()
144 temp += aSeparator; in OReadEventsDocumentHandler()
145 temp += ::rtl::OUString::createFromAscii( EventEntries[i].aEntryName ); in OReadEventsDocumentHandler()
146 m_aEventsMap.insert( EventsHashMap::value_type( temp, (Events_XML_Entry)i ) ); in OReadEventsDocumentHandler()
H A Dstatusbardocumenthandler.cxx186 ::rtl::OUString temp( aNamespaceStatusBar ); in OReadStatusBarDocumentHandler()
187 temp += aSeparator; in OReadStatusBarDocumentHandler()
188 temp += ::rtl::OUString::createFromAscii( StatusBarEntries[i].aEntryName ); in OReadStatusBarDocumentHandler()
189 m_aStatusBarMap.insert( StatusBarHashMap::value_type( temp, (StatusBar_XML_Entry)i ) ); in OReadStatusBarDocumentHandler()
193 ::rtl::OUString temp( aNamespaceXLink ); in OReadStatusBarDocumentHandler()
194 temp += aSeparator; in OReadStatusBarDocumentHandler()
195 temp += ::rtl::OUString::createFromAscii( StatusBarEntries[i].aEntryName ); in OReadStatusBarDocumentHandler()
196 m_aStatusBarMap.insert( StatusBarHashMap::value_type( temp, (StatusBar_XML_Entry)i ) ); in OReadStatusBarDocumentHandler()
H A Dtoolboxdocumenthandler.cxx181 ::rtl::OUString temp( aNamespaceToolBar ); in OReadToolBoxDocumentHandler()
182 temp += aSeparator; in OReadToolBoxDocumentHandler()
183 temp += ::rtl::OUString::createFromAscii( ToolBoxEntries[i].aEntryName ); in OReadToolBoxDocumentHandler()
184 m_aToolBoxMap.insert( ToolBoxHashMap::value_type( temp, (ToolBox_XML_Entry)i ) ); in OReadToolBoxDocumentHandler()
188 ::rtl::OUString temp( aNamespaceXLink ); in OReadToolBoxDocumentHandler()
189 temp += aSeparator; in OReadToolBoxDocumentHandler()
190 temp += ::rtl::OUString::createFromAscii( ToolBoxEntries[i].aEntryName ); in OReadToolBoxDocumentHandler()
191 m_aToolBoxMap.insert( ToolBoxHashMap::value_type( temp, (ToolBox_XML_Entry)i ) ); in OReadToolBoxDocumentHandler()
/aoo41x/test/testuno/source/fvt/uno/sw/page/
H A DCheckBackGraphic.java56 File temp = null; field in CheckBackGraphic
124 temp = new File(getPath("temp")); in setUp()
125 temp.mkdirs(); in setUp()
127 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
128 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
H A DCheckBackColor.java56 File temp = null; field in CheckBackColor
132 temp = new File(getPath("temp")); in setUp()
133 temp.mkdirs(); in setUp()
135 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
136 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
H A DCheckPageLayout.java57 File temp = null; field in CheckPageLayout
132 temp = new File(getPath("temp")); in setUp()
133 temp.mkdirs(); in setUp()
135 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
136 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
H A DCheckShadowFormat.java58 File temp = null; field in CheckShadowFormat
163 temp = new File(getPath("temp")); in setUp()
164 temp.mkdirs(); in setUp()
166 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
167 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
H A DCheckBorder.java56 File temp = null; field in CheckBorder
156 temp = new File(getPath("temp")); in setUp()
157 temp.mkdirs(); in setUp()
159 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
160 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
H A DCheckFooterHeader.java55 File temp = null; field in CheckFooterHeader
161 temp = new File(getPath("temp")); in setUp()
162 temp.mkdirs(); in setUp()
164 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
165 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
H A DCheckPage.java55 File temp = null; field in CheckPage
168 temp = new File(getPath("temp")); in setUp()
169 temp.mkdirs(); in setUp()
171 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
172 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
/aoo41x/main/sal/rtl/source/
H A Dalloc_cache.c1223 rtl_cache_magazine_type *curr, *prev, *temp; in rtl_cache_alloc() local
1246 temp = cache->m_cpu_curr; in rtl_cache_alloc()
1248 cache->m_cpu_prev = temp; in rtl_cache_alloc()
1254 if (temp != 0) in rtl_cache_alloc()
1257 cache->m_cpu_curr = temp; in rtl_cache_alloc()
1298 rtl_cache_magazine_type *curr, *prev, *temp; in rtl_cache_free() local
1316 temp = cache->m_cpu_curr; in rtl_cache_free()
1318 cache->m_cpu_prev = temp; in rtl_cache_free()
1323 temp = rtl_cache_depot_exchange_free (cache, prev); in rtl_cache_free()
1324 if (temp != 0) in rtl_cache_free()
[all …]
/aoo41x/main/crashrep/source/win32/
H A Dsoreport.cpp488 string temp = rString; in trim_string() local
490 while ( temp.length() && temp[0] == ' ' || temp[0] == '\t' ) in trim_string()
491 temp.erase( 0, 1 ); in trim_string()
495 while ( len && temp[len-1] == ' ' || temp[len-1] == '\t' ) in trim_string()
497 temp.erase( len - 1, 1 ); in trim_string()
498 len = temp.length(); in trim_string()
501 return temp; in trim_string()
565 string temp = rString; in xml_encode() local
575 temp.replace( pos, 1, "<" ); in xml_encode()
578 temp.replace( pos, 1, ">" ); in xml_encode()
[all …]
/aoo41x/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/
H A DGSIandSDFMerger.java47 private Map temp=new HashMap(); field in GSIandSDFMerger
83 this.temp=matchGSI(); in getData()
85 if(temp==null){ in getData()
88 return temp; in getData()
/aoo41x/main/scripting/source/inc/util/
H A DMiscUtils.hxx164 ::rtl::OUString temp = location; in parseLocationName()
165 INetURLObject aURLObj( temp ); in parseLocationName()
167temp = aURLObj.getName( INetURLObject::LAST_SEGMENT, true, INetURLObject::DECODE_WITH_CHARSET ); in parseLocationName()
168 return temp; in parseLocationName()
/aoo41x/test/testuno/source/fvt/uno/sw/breaks/
H A DCheckBreaks.java52 File temp = null; field in CheckBreaks
64 temp = new File(getPath("temp")); in setUp()
65 temp.mkdirs(); in setUp()
67 tempFilePathODT = temp + "/tempFilePathODT.odt"; in setUp()
68 tempFilePathDOC = temp + "/tempFilePathDOC.doc"; in setUp()
/aoo41x/main/scripting/source/protocolhandler/
H A Dscripthandler.cxx94 …::rtl::OUString temp = OUSTR( "ScriptProtocolHandler::initialize: could not extract reference to t… in initialize()
95 throw RuntimeException( temp, Reference< XInterface >() ); in initialize()
456 ::rtl::OUString temp = OUSTR( "ScriptProtocolHandler::createScriptProvider(), " ); in createScriptProvider()
457 throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() ); in createScriptProvider()
461 ::rtl::OUString temp = OUSTR( "ScriptProtocolHandler::createScriptProvider: " ); in createScriptProvider()
462 throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() ); in createScriptProvider()
/aoo41x/main/filter/source/flash/
H A Dswffilter.cxx216 TYPE temp = TYPE(); in findPropertyValue() local
225 pValue[i].Value >>= temp; in findPropertyValue()
226 return temp; in findPropertyValue()
380 OUString temp = backgroundfilename + STR("|") + objectsfilename; in ExportAsMultipleFiles() local
381 OString ASCIItemp(temp.getStr(), temp.getLength(), RTL_TEXTENCODING_ASCII_US); in ExportAsMultipleFiles()
/aoo41x/main/sc/source/filter/lotus/
H A Dtool.cxx167 double fValue, temp; in Snum32ToDouble() local
170 temp = nValue & 0x0f; in Snum32ToDouble()
171 if (temp) in Snum32ToDouble()
174 fValue /= pow((double)10, temp); in Snum32ToDouble()
176 fValue *= pow((double)10, temp); in Snum32ToDouble()
/aoo41x/main/sfx2/qa/complex/sfx2/
H A DDocumentProperties.java103 String temp = util.utils.getOfficeTemp/*Dir*/(xMSF); in check() local
104 System.out.println("tempdir: " + temp); in check()
114 cfile.Value = temp + "EMPTY.odt"; in check()
156 xDP2.storeToMedium(temp + "CUSTOM.odt", mimeArgs); in check()
413 xDP.storeToMedium(temp + "TEST.odt", mimeArgs); in check()
419 xDP.loadFromMedium(temp + "TEST.odt", noArgs); in check()
/aoo41x/main/rsc/source/rscpp/
H A Dcpp6.c574 int temp = 0; in lookid() local
596 && (temp = strcmp(dp->name, token)) >= 0) in lookid()
600 return ((temp == 0) ? dp : NULL); in lookid()
616 int temp; in defendel() local
626 && (temp = strcmp(dp->name, name)) >= 0) { in defendel()
627 if (temp > 0) in defendel()
/aoo41x/main/framework/source/xml/
H A Dimagesdocumenthandler.cxx143 ::rtl::OUStringBuffer temp( 20 ); in OReadImagesDocumentHandler()
146 temp.appendAscii( XMLNS_IMAGE ); in OReadImagesDocumentHandler()
148 temp.appendAscii( XMLNS_XLINK ); in OReadImagesDocumentHandler()
150 temp.appendAscii( XMLNS_FILTER_SEPARATOR ); in OReadImagesDocumentHandler()
151 temp.appendAscii( ImagesEntries[i].aEntryName ); in OReadImagesDocumentHandler()
152 m_aImageMap.insert( ImageHashMap::value_type( temp.makeStringAndClear(), (Image_XML_Entry)i ) ); in OReadImagesDocumentHandler()
/aoo41x/main/sal/osl/os2/
H A Dfile_url.cxx1032 rtl_uString* temp = 0; in osl_getSystemPathFromFileURL_Ex()
1033 oslFileError osl_error = osl_getSystemPathFromFileURL(ustrFileURL, &temp); in osl_getSystemPathFromFileURL_Ex()
1038 || (UNICHAR_SLASH == temp->buffer[0]) in osl_getSystemPathFromFileURL_Ex()
1039 || (UNICHAR_COLON == temp->buffer[1] && UNICHAR_SLASH == temp->buffer[2])) in osl_getSystemPathFromFileURL_Ex()
1041 *pustrSystemPath = temp; in osl_getSystemPathFromFileURL_Ex()
1045 rtl_uString_release(temp); in osl_getSystemPathFromFileURL_Ex()
/aoo41x/main/comphelper/source/misc/
H A Duieventslogger.cxx480 Reference< XInterface > temp = in prepareLogHandler() local
482 m_LogHandler = Reference<XLogHandler>(temp, UNO_QUERY); in prepareLogHandler()
553 Reference<XInterface> temp = in initializeLogger() local
555 pool = Reference<XLoggerPool>(temp, UNO_QUERY); in initializeLogger()
566 Reference<XInterface> temp = in initializeLogger() local
568 m_Formatter = Reference<XCsvLogFormatter>(temp, UNO_QUERY); in initializeLogger()
/aoo41x/main/sal/osl/unx/
H A Dfile_url.cxx419 rtl_uString* temp = 0; in osl_getSystemPathFromFileURL_Ex() local
420 oslFileError osl_error = osl_getSystemPathFromFileURL(ustrFileURL, &temp); in osl_getSystemPathFromFileURL_Ex()
424 if (bAllowRelative || (UNICHAR_SLASH == temp->buffer[0])) in osl_getSystemPathFromFileURL_Ex()
426 *pustrSystemPath = temp; in osl_getSystemPathFromFileURL_Ex()
430 rtl_uString_release(temp); in osl_getSystemPathFromFileURL_Ex()
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/
H A DParaStyle.java567 double temp = value[i] / 100.0; in writeAttributes() local
568 String stringVal = (new Double(temp)).toString() + "mm"; in writeAttributes()
578 double temp = (value[LINE_HEIGHT] & LH_VALUEMASK) / 100.0; in writeAttributes() local
579 stringVal = (new Double(temp)).toString() + "mm"; in writeAttributes()

Completed in 133 milliseconds

12345678